美文网首页
Web html的ul横向排列

Web html的ul横向排列

作者: 3c9a4f007e1b | 来源:发表于2018-08-01 16:56 被阅读0次
  • html
<ul class="nav">
    <li>menu1</li>
    <li>menu2</li>
    <li>menu3</li>
    <li>menu4</li>
    <li>menu5</li>
    <li>menu6</li>
</ul>
  • 第一种方式:flex
ul,li{list-style: none;margin: 0;padding: 0;}
.nav{display: flex;flex: row;flex-wrap: wrap;}
.nav li{width: 200px;flex: auto; text-align: center;}
  • 第二种方式:float
ul,li{list-style: none;margin: 0;padding: 0;}
.nav{display: flex;flex: row;flex-wrap: wrap;}
.nav li{width: 200px;flex: auto; text-align: center;}

如有疑问,可加QQ:297278806

相关文章

网友评论

      本文标题:Web html的ul横向排列

      本文链接:https://www.haomeiwen.com/subject/znyrvftx.html