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

Float浮動導(dǎo)航欄

Original 2019-06-23 16:31:32 299
abstract:<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0">&

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<meta http-equiv="X-UA-Compatible" content="ie=edge">

<title>浮動導(dǎo)航條</title>

<style type="text/css">

*{margin: 0px; padding: 0px;}

ul li{

list-style: none;

width: 120px;

height: 30px;

background-color: black;

color: aliceblue;

line-height: 30px;

text-align: center;

margin: 1px 0.5px;

float: left;

}

.clear{

clear: both;

}

.box{

width: 120px;

height: 50px;

background-color: royalblue;

color: aliceblue;

line-height: 50px;

text-align: center;

margin: 1px 0.5px;

float: left;

}

</style>

</head>

<body>

<ul>

<li>PHP</li>

<li>JavaScript</li>

<li>jQuery</li>

<li>VUS</li>

<li>Laravel</li>

</ul>

<div class="clear"></div>

<div class="box">導(dǎo)航1</div>

<div class="box">導(dǎo)航2</div>

<div class="box">導(dǎo)航3</div>

<div class="box">導(dǎo)航4</div>

<div class="box">導(dǎo)航5</div>

</body>

</html>



Correcting teacher:天蓬老師Correction time:2019-06-24 10:03:16
Teacher's summary:浮動導(dǎo)航, 改變了元素原有的文檔流布局模式....在布局中應(yīng)用... 不過, 如果能改成定位, 肯定會更好

Release Notes

Popular Entries