亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

導(dǎo)航欄下拉練習(xí)

Original 2018-11-22 17:23:57 271
abstract:<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>yundao</title> <style> *{margin:0px;padding: 0px;} li { list-style:&
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>yundao</title>
<style>
*{margin:0px;padding: 0px;}
li {
list-style: none;
}
a{
text-decoration: none;
}
.header{
width: 1002px;height: 100px;
background-color: #fafafa;
margin:0 auto;
}
.logo{
float: left;
}
.inner{
float: right;
}
.nav{
width: auto;
clear: both;
}
/*.nav::after{
content:"";
        display:block;
        clear:both;
}*/
.nav>li {  /*導(dǎo)航欄li設(shè)置*/
float: left;
text-align: center;
margin-top: 20px;
margin-right:10px;
display: inline-table;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
width: 75px;
height: 50px;
line-height: 50px;
position: relative;/*相對定位*/
}
.nav li a{
height: 20px;
color: #333;
/*display:inline-table;*/
}
.nav_ul{ /*下拉欄*/
display: none; /*隱藏下拉欄盒子*/
border: 1px #ccc;
height: 120px;
background-color: #f9f9f9;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
/*padding-left: 10px;*/
position: absolute;/*絕對定位*/
}
.nav_ul li a{
display:block;
margin-top: 10px;
height: 22px;
line-height: 22px;
text-align: center;
width: 75px;
}
.nav_ul li{
/*float: none;*/
}
.nav li:hover > ul{
/* margin-top: -40px;*/
display: block;/*展開下拉欄盒子*/
}
.nav_ul li a:hover{
background:linear-gradient(to bottom,red,green);
}
</style>
</head>
<body>
<div>
<div>  <!-- logo左浮動 -->
<a href="#"><img src="images/logo.png" alt=""></a>
</div>
<div>  <!-- 導(dǎo)航欄右浮動 -->
<ul>
<li><a href="#">首頁</a></li>
<li><a href="#">商城</a>
<ul>
<li><a href="http://tmall.com">天 貓</a></li>
<li><a href="http://jd.com">京 東</a></li>
<li><a href="#">&nbsp;&nbsp;亞馬遜</a></li>
</ul>
</li>
<li><a href="#">門店</a>
<ul>
<li><a href="http://tmall.com">青秀區(qū)</a></li>
<li><a href="http://jd.com">興寧區(qū)</a></li>
<li><a href="#">江南區(qū)</a></li>
</ul>
</li>
<li><a href="#">平臺</a></li>
<li><a href="#">媒體</a></li>
<li><a href="#">關(guān)于我們</a></li>
</ul>
</div>
</div>
</body>
</html>

<p> 利用display的特性來隱藏和展出div盒子,以達到下拉欄的效果</p>

Correcting teacher:滅絕師太Correction time:2018-11-22 17:29:07
Teacher's summary:布局有時候就是巧妙的運用標簽屬性的特性哦!

Release Notes

Popular Entries