我有一个带有可变元素数的ul.如果li太宽,列表无法在单行处理它们,则会断开该行并开始在较低的行上呈现li,所以我得到这样的结果:
x – 代表列表的元素
| – 代表列表边界,或限制列表宽度的任何内容
@H_403_9@|xxxxxxxxx|<- elements reached the end of container and remaining elements will be rendered below
|xxxx |
我需要的是将元素渲染到底部,这样我才能得到:
@H_403_9@|xxxx |
|xxxxxxxxx|<- elements reached the end of container and remaining elements will be rendered above
可能吗?
这是一些示例代码
@H_403_9@
最佳答案
@H_403_9@
原文链接:https://www.f2er.com/css/427552.htmlul,ul li {
-webkit-transform: scaleY(-1);
-moz-transform: scaleY(-1);
-ms-transform: scaleY(-1);
-o-transform: scaleY(-1);
transform: scaleY(-1);
}
ul {
width: 350px;
}
li {
display: inline-block;
width: 70px;
zoom: 1;
*display: inline;
}