如何在垂直排序列表?

时间:2012-12-13 08:15:42

标签: html css

我正在使用HTML and CSS下面的代码对vertical中的列表进行排序,输出为horizontal已排序。

我的示例代码:

<!DOCTYPE HTML>
<html>
  <head>
    <title>Tiles</title>
    <style type="text/css">
    #tiles {
        list-style: none;
        margin: 0px;
    }
    #tiles li {
        float: left;
        margin: 20px;
        width: 300px;
        height: 200px;
        background-color: #dddddd;
        font-size: 72px;
        text-align: center;
        vertical-align: middle;
    }
    </style>
  </head>
  <body>
    <ul id="tiles">
       <li>1</li><li>2</li><li>3</li><li>4</li><li>5</li><li>6</li>
    </ul>
  </body>
</html>

输出是:

enter image description here

但是,我想要这个输出。

enter image description here

请在vertical中为我提供排序列表的代码。

2 个答案:

答案 0 :(得分:9)

使用CSS columns :( JSFiddle

ul {
    column-width: 380px;
    -webkit-column-width:380px;
    -moz-column-width: 380px;
    height:440px;
}

#tiles {
    list-style: none;
    margin: 0px;
}
#tiles li {
    /* float: left; */
    margin: 20px;
    width: 300px;
    height: 200px;
    background-color: #dddddd;
    font-size: 72px;
    text-align: center;
    vertical-align: middle;
}

请注意,这在IE≤9中不起作用。

答案 1 :(得分:0)

CSS

    #tiles {         
        list-style: none;        
        margin: 0px; 
        width:300px;
        height:200px;   
          }     
     ul   {
        column-width: 85px;
        -webkit-column-width:85px;
        -moz-column-width: 85px;
        height:60px;
         }

    #tiles li {         
        float: left;
        margin: 20px;        
        width: 50px;         
        height: 30px;         
        background-color: #dddddd;         
        font-size: 16px;         
        text-align: center;         
        vertical-align: middle;     }

请参阅fiddle

这是输出图像