列表中的独立自动宽度

时间:2012-07-27 20:34:27

标签: css

如何在列表中创建独立的自动宽度?现在,如果我在 ul 中为 li 设置 width:auto ,则 li 会扩展为100%。我怎样才能达到如下所示的那种自动宽度?

Goal

1 个答案:

答案 0 :(得分:2)

您可以使用floatclear属性:

li {
    background: #999;
    clear:left;
    float:left;
}​

<强> jsFiddle example