国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

float的練習(xí)

Original 2019-02-26 19:39:51 176
abstract:<!DOCTYPE html><html><head> <title>float</title> <style type="text/css"> #daohang li{list-style: none; width: 100px;height: 40px;line-height: 40px;text-a

<!DOCTYPE html>

<html>

<head>

<title>float</title>

<style type="text/css">

#daohang li{list-style: none; width: 100px;height: 40px;line-height: 40px;text-align: center;background-color: #ccc;float: left; margin: 0 1px;}

.box1{background: #ff0000; color: #fff; width: 100px; height: 100px;float: right;}

.clear{clear: both;}

</style>

</head>

<body>

<ul id="daohang">

<li>Html</li>

<li>Css</li>

<li>JavaScript</li>

<li>JQuery</li>

</ul>

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

<div class="box1">第一個div</div>

<div class="box1">第二個div</div>

<div class="box1">第三個div</div>

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

</body>

</html>

Correcting teacher:滅絕師太Correction time:2019-02-27 09:17:07
Teacher's summary:前端浮動是魔鬼 , 注意清除浮動的使用哦!

Release Notes

Popular Entries