Blogger Information
Blog 24
fans 0
comment 0
visits 15270
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
3.21作业
小蚂蚁的博客
Original
549 people have browsed it

<!DOCTYPE html>
<html>
<meta charset="utf-8">
<head>
    <title>CSS样式使用</title>
    <style type="text/css">
    h2{/*设置当前背景*/
        background-color:cyan;   
        /*设置当前背景颜色*/  
        color: blue;
    }
    </style>

    
</head>
<body>
<h2 style="color: green">天天洗脑就是听不懂。。。。。</h2>
<h2>天天都是补交作业的命!</h2>
<h1>哈哈哈。。。。
<h2 style="background-clip: yellow;">
    大家都交完了就我这个二货没交</h2>
</body>
</html>

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>拍卖幸运号码</title>
    <style type="text/css">  
      
    ul{
        padding:0;
        margin:0;
         width:450px;
         
         padding: 10px 5px;
            }
     ul:after{
      content: ;
     display: block;   
     clear: both; }
     li {
         list-style: none;
         float: left;  
         width: 40px;
         line-height:40px;
         text-align: center;
         margin-right: 5px;     }

      *[id] {
          background-color: red
      }
    /*  li[class ~=red]{ background-color:brown
       }*/        
      li[class ^=ph]{background-color: coral}
      li[class $=s]{background-color: lime}
      li[class *=e]{background-color: yellowgreen}
      p:only-child{color:red;}
      p:only-of-type{
          color:red;
      }
      li:nth-child(){

      }
    </style>  
</head>
<body>
    <ul>
        <li id="iteml">28号</li>
        <li>66号</li>
        <li >69号</li>
        <li>18号</li>
        <li>27号</li>
        <li clas="php">13号</li>
        <li id="item1">08号</li>
        <li class="php.css">68号</li>
        <li>58号</li>
        <li>01号</li>
        </ul>
</html>     

图片还没抄写完QQ截图20180326181633.png


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!