嗨,谢谢你的检查。
我有一个列表,它有多个嵌套。我想改变这两个列表的顺序,我想知道只有css才有可能吗?
我想将订单更改为:
由于列表的长度是动态的,我不能使用绝对定位或类似的东西。
答案 0 :(得分:0)
答案 1 :(得分:0)
这是一个棘手的问题,但您可以通过使用CSS Flexbox TotpSecurityStampBasedTokenProvider
属性来实现这一目标。
您需要更改order
和<ul>
元素的属性。请查看下面的代码段。
<li>
&#13;
body {
padding: 2em;
}
/* Resetting properties of <ul> */
ul {
padding: 0;
margin: 0;
list-style: disc;
}
/* Applying Flex properties to <ul> */
ul.normal-list {
display: flex;
flex-direction: column;
}
/* Changing the order of all the <li>s except the <ul> with the class 'nested-list' */
li.nested-list {
order: 1;
}
&#13;