博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
如何构建顶部导航条_如何构建导航栏
阅读量:2533 次
发布时间:2019-05-11

本文共 1680 字,大约阅读时间需要 5 分钟。

如何构建顶部导航条

Navigation bars are a very important element to any website. They provide the main method of navigation by providing a main list of links to a user. There are many methods to creating a navigation bar. The easiest way to create a navigation bar is to use an unordered list and style it with CSS.

导航栏对于任何网站都是非常重要的元素。 它们通过提供指向用户的链接的主要列表,提供了主要的导航方法。 创建导航栏的方法有很多。 创建导航栏的最简单方法是使用无序列表,并使用CSS设置其样式。

Navigation Bars are mostly made up of <ul> lists that are horizontally arranged and styled.

导航栏主要由水平排列和样式化的<ul>列表组成。

While styling the navigation bars, it’s common to remove the extra spacing created by the <ul> and <li> tags as well as the bullet points that are automatically inserted:

设置导航栏的样式时,通常会删除<ul><li>标记以及自动插入的项目符号点所创建的多余间距:

list-style-type: none;   margin: 0px;   padding: 0px;

Example:

例:

There are two parts to any navigation: the HTML and the CSS. This is just a quick example.

任何导航都有两部分:HTML和CSS。 这只是一个简单的例子。

/* Define the main Navigation block */.myNav {    display: block;    height: 50px;    line-height: 50px;    background-color: #333;}/* Remove bullets, margin and padding */.myNav ul {    list-style: none;    padding: 0;    margin: 0;}.myNav li {    float: left;    /* Or you can use display: inline; */}/* Define the block styling for the links */.myNav li a {    display: inline-block;    text-align: center;    padding: 14px 16px;}/* This is optional, however if you want to display the active link differently apply a background to it */.myNav li a.active {    background-color: #3786E1;}

翻译自:

如何构建顶部导航条

转载地址:http://gbuzd.baihongyu.com/

你可能感兴趣的文章
flume+elasticsearch+kibana遇到的坑
查看>>
【MM系列】在SAP里查看数据的方法
查看>>
C#——winform
查看>>
CSS3 transform制作的漂亮的滚动式导航
查看>>
《小强升职记——时间管理故事书》读书笔记
查看>>
Alpha 冲刺(3/10)
查看>>
Kaldi中的Chain模型
查看>>
spring中的ResourceBundleMessageSource使用和测试示例
查看>>
Ubuntu菜鸟入门(五)—— 一些编程相关工具
查看>>
Codeforces 279D The Minimum Number of Variables 状压dp
查看>>
打分排序系统漫谈2 - 点赞量?点赞率?! 置信区间!
查看>>
valgrind检测linux程序内存泄露
查看>>
Hadoop以及组件介绍
查看>>
1020 Tree Traversals (25)(25 point(s))
查看>>
第一次作业
查看>>
“==”运算符与equals()
查看>>
单工、半双工和全双工的定义
查看>>
Hdu【线段树】基础题.cpp
查看>>
时钟系统
查看>>
BiTree
查看>>