|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
声明块由一个一个的声明组成,声明由属性和值组成,属性和值用冒号隔开,分号结束。
先看看XHTML代码:
<divid="navcontainer">
<ulid="navlist">
<liid="active"><ahref="http://www.dw8.cn/"id="current">Itemone</a>
<ulid="subnavlist">
<liid="subactive"><ahref="http://www.dw8.cn/"id="subcurrent">Subitemone</a></li>
<li><ahref="http://www.dw8.cn/">Subitemtwo</a></li>
<li><ahref="http://www.dw8.cn/">Subitemthree</a></li>
<li><ahref="http://www.dw8.cn/">Subitemfour</a></li>
</ul>
</li>
<li><ahref="http://www.dw8.cn/">Itemtwo</a></li>
<li><ahref="http://www.dw8.cn/">Itemthree</a></li>
<li><ahref="http://www.dw8.cn/">Itemfour</a></li>
</ul>
</div>
看看CSS是怎样定久相干元素的:
#navcontainer{margin-left:30px;}
#navcontainerul
{
margin:0;
padding:0;
list-style-type:none;
font-family:verdana,arial,Helvetica,sans-serif;
}
#navcontainerli{margin:0;}
#navcontainera
{
display:block;
padding:5px10px;
width:140px;
color:#000;
background-color:#ADC1AD;
text-decoration:none;
border-top:1pxsolid#fff;
border-left:1pxsolid#fff;
border-bottom:1pxsolid#333;
border-right:1pxsolid#333;
font-weight:bold;
font-size:.8em;
background-image:url(images/vertical06.jpg);
background-repeat:no-repeat;
background-position:00;
}
#navcontainera:hover
{
color:#000;
background-color:#889E88;
text-decoration:none;
border-top:1pxsolid#333;
border-left:1pxsolid#333;
border-bottom:1pxsolid#fff;
border-right:1pxsolid#fff;
background-image:url(images/vertical06a.jpg);
background-repeat:no-repeat;
background-position:00;
}
#navcontainerululli{margin:0;}
#navcontainerulula
{
display:block;
padding:5px5px5px30px;
width:125px;
color:#000;
background-color:#C5D8C5;
text-decoration:none;
font-weight:normal;
}
#navcontainerulula:hover
{
color:#000;
background-color:#889E88;
text-decoration:none;
}
看了这么多代码,如今让我们看看运转效果吧!
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Strict//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<htmlxmlns="http://www.w3.org/1999/xhtml">
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/>
<title>dw8.cn</title>
<styletype="text/css">
#navcontainer{margin-left:30px;}
#navcontainerul
{
margin:0;
padding:0;
list-style-type:none;
font-family:verdana,arial,Helvetica,sans-serif;
}
#navcontainerli{margin:0;}
#navcontainera
{
display:block;
padding:5px10px;
width:140px;
color:#000;
background-color:#ADC1AD;
text-decoration:none;
border-top:1pxsolid#fff;
border-left:1pxsolid#fff;
border-bottom:1pxsolid#333;
border-right:1pxsolid#333;
font-weight:bold;
font-size:.8em;
background-image:url(images/vertical06.jpg);
background-repeat:no-repeat;
background-position:00;
}
#navcontainera:hover
{
color:#000;
background-color:#889E88;
text-decoration:none;
border-top:1pxsolid#333;
border-left:1pxsolid#333;
border-bottom:1pxsolid#fff;
border-right:1pxsolid#fff;
background-image:url(images/vertical06a.jpg);
background-repeat:no-repeat;
background-position:00;
}
#navcontainerululli{margin:0;}
#navcontainerulula
{
display:block;
padding:5px5px5px30px;
width:125px;
color:#000;
background-color:#C5D8C5;
text-decoration:none;
font-weight:normal;
}
#navcontainerulula:hover
{
color:#000;
background-color:#889E88;
text-decoration:none;
}
</style>
</head>
<body>
<divid="navcontainer">
<ulid="navlist">
<liid="active"><ahref="http://www.dw8.cn/"id="current">Itemone</a>
<ulid="subnavlist">
<liid="subactive"><ahref="http://www.dw8.cn/"id="subcurrent">Subitemone</a></li>
<li><ahref="http://www.dw8.cn/">Subitemtwo</a></li>
<li><ahref="http://www.dw8.cn/">Subitemthree</a></li>
<li><ahref="http://www.dw8.cn/">Subitemfour</a></li>
</ul>
</li>
<li><ahref="http://www.dw8.cn/">Itemtwo</a></li>
<li><ahref="http://www.dw8.cn/">Itemthree</a></li>
<li><ahref="http://www.dw8.cn/">Itemfour</a></li>
</ul>
</div>
</body>
</html>
</p>
目前我们的站就是div+css做的,美工可以通过css直接控制我的程序输出的页面动态数据的样式DIV就只是布局元素. |
|