样式浮动设置

Original 2019-05-09 15:32:09 162
abstract:<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title>浮动</title>    <style>    

<!DOCTYPE html>
<html lang="en">
<head>
   <meta charset="UTF-8">
   <title>浮动</title>
   <style>
       ul li{
           width: 200px;
           height:100px;
           background-color: aqua;
           list-style: none;
           line-height:30px;
           text-align: center;
           margin: 0 1px;
           float:left;
       }
    .ccc {
        width: 200px;
        height:100px;
        background-color:navajowhite;
        float: right;
    }
    .sss {clear: both;}

   </style>


</head>
<body>
<ul>
   <li>wyc</li>
   <li>chj</li>
   <li>xw</li>
   <li>hs</li>
   <li>zfy</li>
</ul>
   <div class="ccc"></div>
   


</body>
</html>

Correcting teacher:查无此人Correction time:2019-05-10 13:59:30
Teacher's summary:完成的不错,漂浮一般手机网页用的比较多。继续加油。

Release Notes

Popular Entries