css3技术

DIVCSS列形导航一例,超酷解析!_div+css布局教程

字号+ 作者:H5之家 来源:H5之家 2015-09-29 08:13 我要评论( )

DIVCSS列形导航一例,超酷解析!,学习DIVCSS列形导航一例,超酷解析!,DIVCSS列形导航一例,超酷解析!,查看DIVCSS列形导航一例,超酷解析!,先看看XHTML代码:

先看看XHTML代码:

div css xhtml xml Example Source Code

Example Source Code []

<div id=\"navcontainer\">
<ul id=\"navlist\">
<li id=\"active\"><a href=\"http://www./\" id=\"current\">Item one</a>
<ul id=\"subnavlist\">
<li id=\"subactive\"><a href=\"http://www./\" id=\"subcurrent\">Subitem one</a></li>
<li><a href=\"http://www./\">Subitem two</a></li>
<li><a href=\"http://www./\">Subitem three</a></li>
<li><a href=\"http://www./\">Subitem four</a></li>
</ul>
</li>
<li><a href=\"http://www./\">Item two</a></li>
<li><a href=\"http://www./\">Item three</a></li>
<li><a href=\"http://www./\">Item four</a></li>
</ul>
</div>



看看CSS是如何定久相关元素的:

div css xhtml xml Example Source Code

Example Source Code []

#navcontainer { margin-left: 30px; }

#navcontainer ul
{
margin: 0;
padding: 0;
list-style-type: none;
font-family: verdana, arial, Helvetica, sans-serif;
}

#navcontainer li { margin: 0; }

#navcontainer a
{
display: block;
padding: 5px 10px;
width: 140px;
color: #000;
background-color: #ADC1AD;
text-decoration: none;
border-top: 1px solid #fff;
border-left: 1px solid #fff;
border-bottom: 1px solid #333;
border-right: 1px solid #333;
font-weight: bold;
font-size: .8em;
background-image: url(images/vertical06.jpg);
background-repeat: no-repeat;
background-position: 0 0;
}

#navcontainer a:hover
{
color: #000;
background-color: #889E88;
text-decoration: none;
border-top: 1px solid #333;
border-left: 1px solid #333;
border-bottom: 1px solid #fff;
border-right: 1px solid #fff;
background-image: url(images/vertical06a.jpg);
background-repeat: no-repeat;
background-position: 0 0;
}

#navcontainer ul ul li { margin: 0; }

#navcontainer ul ul a
{
display: block;
padding: 5px 5px 5px 30px;
width: 125px;
color: #000;
background-color: #C5D8C5;
text-decoration: none;
font-weight: normal;
}

#navcontainer ul ul a:hover
{
color: #000;
background-color: #889E88;
text-decoration: none;
}



看了这么多代码,现在让我们看看运行效果吧!

div css xhtml xml Source Code to Run

Source Code to Run []


[ 可先修改部分代码 再运行查看效果 ]

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
网友点评