开发者

Full width left-aligned list

开发者 https://www.devze.com 2023-04-08 06:25 出处:网络
Is it possible to stretch and unordered list to fill the full page-width; floating list-items (left) inside of it, without list-items getting clipped if they overflow (hidden) the unordered list?

Is it possible to stretch and unordered list to fill the full page-width; floating list-items (left) inside of it, without list-items getting clipped if they overflow (hidden) the unordered list?

If I simply do overflow: none; on the unordered list, whatever list-items are inside, which wont fit a 100 percent, are not shown.

开发者_如何学Go

This is what I want...

http://roosteronacid.com/stackoverflow.png

Notice that the first and third list-items are shown, even if the unordered list isn't able to show/house them in their full width.


You should set ul to display: table, and li to table-cell. Here is example: http://jsfiddle.net/simoncereska/4w92q/

0

精彩评论

暂无评论...
验证码 换一张
取 消