在IE中不包装的UL样式表

时间:2014-03-18 14:24:53

标签: html css internet-explorer html-lists

我使用以下样式表来包装UL ...它会使UL在到达页面底部时换行到下一列的顶部。

此代码适用于Chrome,但不适用于IE。

#limheight {
height: 350px; /*your fixed height*/
-webkit-column-count: 4;
   -moz-column-count: 4;
        column-count: 4; /*3 in those rules is just placeholder -- can be anything*/          
}
#limheight li {
display: normal; /*necessary*/
}

有人能指出我正确的方向吗?

1 个答案:

答案 0 :(得分:0)

您需要使用Internet Explorer 10或更高版本。如果您使用的是Internet Explorer 9或更低版本,则不会显示列,因为它不支持所有CSS3功能。