博客列表 >20180322作业

20180322作业

卢光维的博客
卢光维的博客原创
2018年03月22日 19:55:37547浏览
<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <title>基本选择器实例</title>
  <style type="text/css">
    /*元素选择器 */
    ul{
      padding:0;
      margin:0;
      width:450px;
      border:1px dashed #666;
      padding:10px 5px;
    }
    ul:after{
      content:'';
      display:block;
      clear:both;
    }
    li{
      list-style:none;
      float:left;
      width:40px;
      line-height:40px;
      text-align:center;
      border-radius:50%;
      background-color:skyblue;
      margin-right:5px;
    }
    #user1{
      background-color: green;
    }
    .age{
      background-color: red;
    }
    </style>
</head>
<body>
    <ul>
      <li id="user1">lgw</li>
      <li>32</li>
      <li id="user2">wjf</li>
      <li>33</li>
      <li>yly</li>
      <li>35</li>
      <li>wyc</li>
      <li>54</li>
      <li>lll</li>
      <li>55</li>
    </ul>
</body>
</html>

微信图片_20180322195322.jpg

上一条:3.21作业下一条:3月21日
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议