码迷,mamicode.com
首页 > Web开发 > 详细

CSS------如何让ul中的li分为两列甚至多列

时间:2017-01-21 10:51:42      阅读:344      评论:0      收藏:0      [点我收藏+]

标签:div   htm   val   sina   font   input   with   int   com   

转载:

http://blog.sina.com.cn/s/blog_7f13f92a0100rkfg.html

 

只需要复制ul和li中的style样式即可

如果需要自定义多少列,只需要修改li中的with属性即可

<ul style="overflow:hidden;zoom:1" >
  @foreach (IGrouping<string, RegionInfo> item in ViewBag.Area)
  {
    <li style="float:left;width:300px;padding:5px">
      <span style="color:red;font-size:20px">@item.Key</span>
      @foreach (var entity in item)
      {
        <a class="province" style="font-size:15px;color:#333;cursor:pointer">@entity.Name<input type="hidden" value="@entity.RegionId"/></a>
      }
    </li>
  }
</ul>

 

CSS------如何让ul中的li分为两列甚至多列

标签:div   htm   val   sina   font   input   with   int   com   

原文地址:http://www.cnblogs.com/tianhengblogs/p/6336502.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!