我希望通过使用单个 <ul> 和六个 <li> 项来制作一个两列导航栏:
I am looking to make a two-column navigation bar by using a single <ul> with six <li> items:
<nav>
<ul>
<li>Home</li>
<li>About</li>
<li>Team</li>
<li>Store</li>
<li>Blog</li>
<li>Contact</li>
</ul>
</nav>
一侧三个元素,另一侧三个元素;垂直排列.
Three elements on one side, and three on the other; ordered vertically.
现在,制作两个单独的 <ul> 元素并在它们之间放置填充/边距很容易:http://jsfiddle.net/Baumr/SJcjN/ — 但这不是一个很好的解决方案.
Right now, it's easy to do when making two seperate <ul> elements and putting padding/margins between them: http://jsfiddle.net/Baumr/SJcjN/ — but that's not a great solution.
还可以将 <span> 标签包裹在每组三个 <li> 周围——但这是唯一的 CSS 解决方案吗?
Could also wrap <span> tags around each set of three <li>'s — but is that the only CSS solution?
寻找一些优雅的想法.谢谢!
Looking for some elegant ideas. Thank you!
<ul>
<li>Home</li>
<li>About</li>
<li>Team</li>
<li>Store</li>
<li>Blog</li>
<li>Contact</li>
</ul>
CSS:
li {
width: 50%;
float: left;
padding: 5px 0;
}
他们会这样订购:
Home About
Team Store
Blog Contact
如果这不是问题,您有一个非常简单的解决方案.
If that's not a problem, you have a very simple solution.
li:nth-child(even) {
width: 50%;
float: right;
}
li:nth-child(odd) {
width: 50%;
float: left;
}
这将以正确的方式对它们进行排序.不确定 IE 会如何运作,但可以在所有其他浏览器中运行.
This will order them in the correct way. not sure how IE will act, but will work in all other browsers.
或者您可以严格遵循 UL-LI 概念,因此您的 html 将如下所示,并且您可以拥有任意数量的列:
or you can follow strictly the UL-LI concept, so your html will look like this an you can have as many column as you need:
<nav>
<ul class="menuitem">
<li class="column">
<ul>
<li>Home</li>
<li>About</li>
<li>Team</li>
</ul>
</li>
<li class="column">
<ul>
<li>Store</li>
<li>Blog</li>
<li>Contact</li>
</ul>
</li>
</ul>
<ul class="menuitem">
<li class="column">
.....
</li>
</ul>
</nav>
制作正确且格式正确的 html 可以让您的生活更轻松.
Making a correct and well formated html can make your life easier.
这篇关于使用 CSS 和单个列表的简单 2 列导航?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
如何检查重复的 CSS 规则?How to check for duplicate CSS rules?(如何检查重复的 CSS 规则?)
删除多个文件中的重复 CSS 声明Remove duplicate CSS declarations across multiple files(删除多个文件中的重复 CSS 声明)
如何复制 div onclick 事件?How can I duplicate a div onclick event?(如何复制 div onclick 事件?)
从谷歌驱动器打开 htmlopening html from google drive(从谷歌驱动器打开 html)
如何将视频从 Google 驱动器嵌入到网页?How to embed videos from Google drive to webpage?(如何将视频从 Google 驱动器嵌入到网页?)
如何在 iframe 中查看 Google Drive pdf 链接How to view Google drive pdf link in iframe(如何在 iframe 中查看 Google Drive pdf 链接)