我做不到很坚强,但起码要让自己不再懦弱!人生最大的错误,是用健康换取身外之物,人生最大的悲哀,是用生命换取个人的烦恼,人生最大的浪费,是用生命解决自己制造的麻烦!
第一步,我们新建一个my.html文件,填写内容如下,这个html文件直到最后都不用动了,它就是这些内容:CSS Code复制内容到剪贴板
- <!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <htmlxmlns="http://www.w3.org/1999/xhtml">
- <head>
- <linkrel="stylesheet"type="text/css"rel="nofollow noopener noreferrer" href="xin.css">
- </head>
- <body>
- <divclass="nav">
- <ul>
- <li><arel="nofollow noopener noreferrer" href="#">辛星PHP</a></li>
- <li><arel="nofollow noopener noreferrer" href="#">辛星Python</a></li>
- <li><arel="nofollow noopener noreferrer" href="#">辛星CSS</a></li>
- <li><arel="nofollow noopener noreferrer" href="#">辛星HTML</a></li>
- <li><arel="nofollow noopener noreferrer" href="#">辛星jQuery</a></li>
- <li><arel="nofollow noopener noreferrer" href="#">辛星Java</a></li>
- </ul></div>
- </body>
- </html>
CSS Code复制内容到剪贴板
- .navul{list-style-type:none;}
第三步,我们通过设置li的浮动来让它们横向排列,我们在第二行添加代码,因此整个代码成为:
CSS Code复制内容到剪贴板
- .navul{list-style-type:none;}
- .navli{float:left;}
CSS Code复制内容到剪贴板
- .navul{list-style-type:none;}
- .navli{float:left;width:100px;background:#CCC;}
第五步我们就开始设置鼠标的样式了,顺便我们把下划线给去掉,我们前面介绍过伪类的概念,如果读者不熟悉,也可以到前面翻翻我的好代码教程,我们同时添加背景颜色什么的,因此它的代码成为下面这个样子:
CSS Code复制内容到剪贴板
- .navul{list-style-type:none;}
- .navli{float:left;width:100px;background:#CCC;}
- .nava:link{color:#666;background:#CCC;text-decoration:none;}
- .nava:visited{color:#666;text-decoration:none;}
- .nava:hover{color:#FFF;font-weight:bold;text-decoration:underline;background:#0F0;}
CSS Code复制内容到剪贴板
- .navul{list-style-type:none;}
- .navli{float:left;width:100px;}
- .nava:link{color:#666;background:#CCC;text-decoration:none;}
- .nava:visited{color:#666;text-decoration:none;}
- .nava:hover{color:#FFF;font-weight:bold;text-decoration:underline;background:#0F0;}
- .nava{display:block;text-align:center;height:30px;font-weight:bold;}
CSS Code复制内容到剪贴板
- .navul{list-style-type:none;}
- .navli{float:left;width:100px;margin-left:3px;line-height:30px;}
- .nava:link{color:#666;background:#CCC;text-decoration:none;}
- .nava:visited{color:#666;text-decoration:none;}
- .nava:hover{color:#FFF;font-weight:bold;text-decoration:underline;background:#0F0;}
- .nava{display:block;text-align:center;height:30px;font-weight:bold;}
以上就是用CSS手写导航条没有任何图片附效果图。而不语是一种成长,痛而不言是一种历练。更多关于用CSS手写导航条没有任何图片附效果图请关注haodaima.com其它相关文章!