您的位置:首页 > Web前端 > CSS

css 盒子模型

2014-02-15 21:45 267 查看
<html>
<head>
<meta http-equiv="Content-type" content="text/html,charset=utf-8"/>
<style type="text/css">
body{
border: red 5px solid;
}
div{
border:green 3px solid;
border-width:2px;
border-top-width:5px;
border-top-color:blue;
border-top-style:solid;

border-left:blue 10px solid;
border-right:orange 20px solid;
border-bottom:red 30px  solid;

padding:80px 77px 88px 44px;
margin:60px 111px 280px 99px;
}
</style>
</head>
<body>
<div>
演示盒子模型
</div>
</body>
</html>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: