<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" > |
<html> |
<head> |
<title>盒子模型</title> |
<style type= "text/css" > |
div{ |
/*设置标签的上下左右边框 |
border:1px solid red; |
*/ |
border-top : 20px solid blue ; |
border-right : 20px solid red ; |
border-bottom : 20px solid yellow; |
border-left : 20px solid green ; |
width : 30px ; |
height : 30px ; |
/* |
margin-top: 0px; |
margin-left: 0px; |
*/ |
margin : 10px ; |
|
|
|
} |
body{ |
margin : 0px ; |
padding : 0px ; |
} |
.one{ |
margin : 30px ; |
padding : 10px 50px 100px ; |
} |
|
|
</style> |
</head> |
<body> |
<!-- |
<div> |
DIV中的数据 |
</div> |
--> |
<div class= "one" > |
DIV中的数据 |
</div> |
<!-- |
<div> |
DIV中的数据 |
</div> |
--> |
</body> |
</html> |
by: 发表于:2017-11-30 10:54:48 顶(0) | 踩(0) 回复
??
回复评论