导航栏是Web中常用的UI组件,在Bootstrap等CSS框架中基本都会提供。 既然导航栏这么重要,下面我们便来手动实现一个导航栏。 这个过程还是需要掌握一些排版技巧和CSS3特性的。
列表样式
导航栏通常使用
- 来标记:
<ul> <li><a>First Item</a></li> <li><a>Second Item</a></li> <li class="active"><a>Third Item</a></li> <li><a>Fourth Item</a></li></ul>
首先便要去掉列表的那些默认样式,比如左边的向目标记(小圆点)和边距:
ul { left-margin: 0; /* IE/Opera 默认使用外边距 */ left-padding: 0; /* Safari/Firefox 默认使用内边距 */ list-style-type: none; /* 左侧向目标记 */}
这样便去掉了浏览器给
- 设置的默认样式了。 至于如何自定义左侧的项目标记,可参考 那些 CSS 背景图的技巧 一文。
- 上下添加额外的空白,可以设置
- 为 display: inline; 来克服。
边框和圆角
接着来设置一些边框和圆角:
ul a{ border-radius: 3px; border: 1px solid #e7e7e7; padding: 0 15px;}
设置边框为稍微深的颜色,再加3像素圆角。设置内边距来让文字和边框有一定的距离。 border-radius 是CSS3特性,此前设置圆角还需要背景图的辅助,见 那些 CSS 背景图的技巧 。
注意设置 border 后,相邻项目的上下边框会连在一起形成2像素的边框。 可以设置负的外边距(让项目重叠1像素)来克服,但需要将最后一个项目的边距恢复为0。
ul a{ margin-bottom: -1px;}ul li:last-child a{ margin-bottom: 0;}
高亮当前项
也许细心的读者可能注意到了,前述HTML片段中有一项
- 设置了 active 的CSS类。 它是为了标明当前高亮项目的。需要如下的样式:
ul .active a, ul a:hover{ background: #e7e7e7;}
水平导航栏
水平导航有多种方式来实现。可以把
- 设置为 inline-block 让它水平排列, 也可以设置 float:left 让
- 水平浮动。我们介绍后者,先看图:
设置
- 水平浮动后,会使得父容器
- 的高度坍缩为零,它的背景设置将会失效。 在 利用浮动和清除浮动进行布局 一文中提到两种解决办法: 一是添加额外元素来清除浮动,二是让父容器也浮动。请看:
ul li{ float: left;}ul{ float: left;}
与垂直导航类似,边框在水平方向会叠加起来。解决方法也是类似的:
ul a{ margin-right: -1px;}ul li:last-child a{ margin-right: 0;}
既然
- 有这么多默认样式,为什么不直接用
垂直的导航栏
一个垂直的导航栏效果应当如下图,其中高亮(深色的)项目表示当前激活项, 表示鼠标悬停或当前页面。
上图使用的仍然是前述的HTML片段,下面主要考虑CSS的实现。 按照前述办法清除列表的默认样式后,来设置列表项的样式:
ul a{ display: block; width: 200px; height: 40px; line-height: 40px; background: #f8f8f8;}
首先将 设置为块级元素来设置它的宽高,然后设置行高与高相同来使文本居中。 最后设置一个背景来凸显一下导航栏。
注意IE会给

The official account web page update cache, this thing is simple and simple, and it is complicated enough to drink a pot of it. You worked hard to update the official account article, but the user still opened the old version. Who can bear the taste? In this article, let’s take a look at the twists and turns behind this and how to solve this problem gracefully. After reading it, you can easily deal with various caching problems, allowing your users to always experience the freshest content. Let’s talk about the basics first. To put it bluntly, in order to improve access speed, the browser or server stores some static resources (such as pictures, CSS, JS) or page content. Next time you access it, you can directly retrieve it from the cache without having to download it again, and it is naturally fast. But this thing is also a double-edged sword. The new version is online,

This article demonstrates efficient PNG border addition to webpages using CSS. It argues that CSS offers superior performance compared to JavaScript or libraries, detailing how to adjust border width, style, and color for subtle or prominent effect

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Zend Studio 13.0.1
Powerful PHP integrated development environment

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Dreamweaver Mac version
Visual web development tools

Atom editor mac version download
The most popular open source editor

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
