neee

导航

7.28学习内容

1.CSS选择器

(1)/*标签选择器*/

    div{
     width: 400px;
     height: 300px;
     background-color: blueviolet;
     padding-top: 200px;
     margin-top: 200px;
     float: left;
    }
  
 (2) /*类选择器*/
    .divTest{
     background-color: cornflowerblue;
    }
  
  (3)/*ID选择器:不能去定义第二个*/
    #secondDIV{
     background-color: bisque;
    }
  
 (4) /*后代选择器*/
    div span{
     font-family: "楷体";
     font-size: 30px;
    }
   </style>
 
   <body>
    <div>
     <span>第一个</span>
    </div>
    <div>第二个</div>
    <div class="divTest">3</div>
    <div class="divTest">4</div>
    <div id="secondDIV">第五个</div>
   </body>

2.编译HTML的辅助文件,上面有很多的形式的代码

3.html和css一起运用才更完美

 

posted on 2018-07-28 15:55  neee  阅读(122)  评论(0编辑  收藏  举报