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

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

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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

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 <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 <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

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

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

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

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
