用ul 来制作导航栏的几个要点】的更多相关文章

1 ul 1)list-style:none; 3)设置宽度 2)清除浮动的影响,使高度自适应 2 li 1)向左浮动 2)设置margin和padding都为0 3 a 1) dsiplay :block 2)设置width和height 完整的代码如下: ul { list-style:none; width:1040px; margin:0px auto; zoom:1 } ul:after { content:"."; font-szie:0px; line-height:0p…
今天主要学习了网页导航栏的制作.注意:引入外部CSS样式时,如果使用background:url(../images/1.png),一定记得用..跳出当前文件夹,回到上级目录. 一.导航栏实现步骤: 1.网页整体分为头部.内容.尾部.网页中心内容部分为版心.版心是定宽的. 2.设定版心宽度.其余每部分内容只需要设置高度即可. 3.header部分分为左.中.右三部分.分别用div包起来,可以设置padding. 4.nav部分用ul实现,li中的a标签为行内元素,要用display转为块标签,给…
<!doctype html><html lang="en"><head>    <meta charset="UTF-8">    <title>CSS制作立体导航</title>    <link rel="stylesheet" href="http://www.w3cplus.com/demo/css3/base.css">    &l…
//首先写一个导航栏样式 .nav{    width:560px;    height: 50px;    font:bold 0/50px Arial;    text-align:center;    margin:40px auto 0;       background: #f65f57;       border-radius:10px;/*制作圆*/       color:#F16153;       box-shadow:0px 5px 0px #B64B41;       }…
初次接触Bootstrap,简单谈一下理解.bootstrap是一个简单有强悍的前端框架,它是一个开源项目.当我们需要一些样式等,可以了解bootstrap的相关class.标签名称等所代表的意思,然后搭建页面时,导入bootstrap的js.css等,就可展现相同的效果. 1.首先进入bootstrap官网,中文文档,bootstrapCdn,css only 复制标签,然后在index.html中粘贴,这就引入好了bootstrap. 2.在Header中使用bootstrap, <temp…
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-…
1)先完成一个导航条 <style type="text/css"> .nav-ul{ list-style: none; } .nav-ul li{ width: 100px; height: 40px; border:1px solid #000; float: left; margin-right: 10px; text-align: center; line-height: 40px; } </style> <div class="nav…
<html> <head> <style> .test ul{list-style:none;} .test li{float:left; width:100px;background:#ccc;margin-left:3px;line-height:30px;} .test a{display:block;text-align:center;height:30px;} .test a:link{color:#666;background:url(aa.jpg) #cc…
最终效果: 代码: <!DOCTYPE html> <html> <head> <title>#练习册二</title> <style type="text/css"> ul{ list-style-type: none; margin: 0; padding: 0; width: 20%; background-color: #f1f1f1; border: 1px solid #555; /*添加边框*/ }…
前提:很多时候.我们的网页都需要一个垂直的导航栏.可以分类.有分类.自然就有展开.关闭的功能.你还在使用jquery操作dom来制作吗?那你就out了! 方案:使用checkbox 的 checked 属性.巧妙地制作导航栏 结果: 我们主要制作成这样这样的的导航栏: 首先.我们写出相对的html  由于时间问题.svg没有处理到类中.所以这里给出svg的空标签.大家如果想看效果.可以到我的git里面fork一份 <div class="nav-child"> <in…