Blogger Information
Blog 35
fans 0
comment 0
visits 26702
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
写一个盒子, 要求用到margin,padding,border, 并用到它们的完整语法, 简写语法
锋芒天下的博客
Original
568 people have browsed it

<!DOCTYPE html>
<html lang="en">
<head>
   <meta charset="UTF-8">
   <title>1. 写一个盒子, 要求用到margin,padding,border, 并用到它们的完整语法, 简写语法</title>

   <style>
       #box{
           width: 500px;
           height: 500px;
           border: 1px solid #cccccc;
           /*margin-top: 20px;*/
           /*margin-right: 30px;*/
           /*margin-bottom: 40px;*/
           /*margin-left: 50px;*/
           margin: 20px 30px 40px 50px;

           /*padding-top: 20px;*/
           /*padding-right: 30px;*/
           /*padding-bottom: 40px;*/
           /*padding-left: 50px;*/

           padding: 20px 30px 40px 50px;
       }
   </style>

</head>
<body>

   <div id="box"></div>

</body>
</html>

Correction status:qualified

Teacher's comments:下次放在代码段中, 方便运行
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