我有一个ul
可变元素计数。当 li 太宽以至于列表无法在单行中处理它们时,它会中断行并开始在下一行呈现 li,所以我得到如下内容:
x - 代表列表的元素
| - 代表列表边界,或任何限制列表宽度的东西
|xxxxxxxxx|<- elements reached the end of container and remaining elements will be rendered below
|xxxx |
我需要的是从下到上渲染元素,这样我就可以得到:
|xxxx |
|xxxxxxxxx|<- elements reached the end of container and remaining elements will be rendered above
可能吗?
这是一些示例代码
<ul>
<li>Some content</li>
<li>Other content</li>
<li>ContentContent</li>
<li>Zawartość Contentu</li>
</ul>
目前,它是无 CSS 的。我可以添加任何你会推荐的东西来呈现它自下而上的顺序。不幸的是,这样的东西float:bottom
不存在。