css盒子模型

Original 2019-04-26 17:48:20 224
abstract:<html><head>    <meta charset="UTF-8">    <style>        div{            width:200px;   &nb

<html>
<head>
   <meta charset="UTF-8">
   <style>
       div{

           width:200px;
           height:100px;
           background-color: red;
           border:2px solid blue;
           margin: 0 auto;

       }
       
       .test{

             box-shadow: 0 2px 30px #888 inset;

       }
   </style>
</head>
<body>

<!--一个盒子只有标签定义,一个盒子有类选择器定义。-->
<div class="test"></div>
<hr>
<div></div>

</body>
</html>

Correcting teacher:查无此人Correction time:2019-04-27 17:30:46
Teacher's summary:完成的不错,css可以让页面更加漂亮。继续加油。

Release Notes

Popular Entries