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

19年1月18號CSS浮動float

Original 2019-01-18 16:13:46 252
abstract:<html><head>    <title>浮動</title>    <style> *{margin:0;padding:0;} ul li{    list-style:none;    width:80px;   &nb

<html>

<head>

    <title>浮動</title>

    <style>

*{margin:0;padding:0;}

ul li{

   list-style:none;

   width:80px;

   height:40px;

   background-color:#ccc;

   text-align:center;

   line-height:40px;

   margin:0px 1px;

   float:left;

}


ul li:hover{

   background-color:red;

   color:blue;

}

    </style>

</head>

<body>

    <ul>

<li class="item">html</li>

<li class="item">Js</li>

<li class="item">PHP</li>

<li class="item">MySQL</li>

<li class="item">jQuery</li>

    </ul>

</body>

</html>


Correcting teacher:滅絕師太Correction time:2019-01-18 17:18:13
Teacher's summary:前端浮動是魔鬼啊,你這個測試少了,沒有體現到浮動的難點

Release Notes

Popular Entries