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:前端浮動是魔鬼 , 注意清除浮動的使用哦!