采用列表标签ul li   css布局 浮动css导航条

css导航条:div css如何布局头部导航条!

实现代码;

#nav {

height: 30px;

width: 100%;

background-color: #c00;

}

#nav ul {

margin: 0 0 0 30px;

padding: 0px;

font-size: 12px;

color: #fff;

line-height: 30px;

white-space: nowrap;

}

#nav li {

list-style-type: none;

display: inline;

}

#nav li a {

text-decoration: none;

font-family: arial, helvetica, sans-serif;

padding: 7px 10px;

color: #fff;

}

#nav li a:hover {

color: #ff0;

background-color: #f00;

}

  • homepage
  • div css教程
  • css布局实例
  • css2.0教程 
  • css在线手册
  • web标准
  • xhtml教程

盒子边框*{    text-align:center;}span{    font-size:30px;}.head{    width:95%;    height:50px;    border:3px solid red;    color:red;    position:fixed;   //这个定位方式是最重要的css导航条,他可以将盒子固定在指定的位置    top:0px;          //这就是定位的位置,距离顶端0px}.head_black{    width:100%;    height:56px;}.content{    width:100%;    height:1000px;    border:3px solid blue;    color:blue;} 头部