码迷,mamicode.com
首页 > Web开发 > 详细

css样式之边框和内外边距

时间:2015-09-29 01:17:22      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:border margin padding

1、css样式之边框:border

实心的边框:

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>页面一</title> 
</head>
<body>

         <div style="border:1px solid blue;height:200px"></div>
</body>
</html>

虚心的边框:

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>页面一</title> 
</head>
<body>

         <div style="border:1px dotted blue;height:200px"></div>
</body>
</html>

2、css样式之内外边距

外边距:margin

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>页面一</title> 
</head>
<body>

    <div style="height:200px;border:1px solid red;">
        <div style="height:30px;background-color:#999;margin-top:10px;margin-left:1250px;margin-right:10px;">
        guojianglin
        </div>
    </div>
</body>
</html>

内边距:padding

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>页面一</title> 
</head>
<body>

    <div style="height:200px;border:1px solid red;">
         <div style="height:30px;background-color:#999;padding-top:50px;">
          guojianglin
         </div>
    </div>

</body>
</html>


css样式之边框和内外边距

标签:border margin padding

原文地址:http://anryk.blog.51cto.com/2814752/1698979

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!