您现在的位置:首页 >> 前端 >> 内容

css样式之边框和内外边距

时间:2015/9/29 9:52:03 点击:

  核心提示:1、css样式之边框:border实心的边框:!DOCTYPE htmlhtmlheadmeta http-equiv=content-type content=text/html;charset=u...
1、css样式之边框:border

 

实心的边框:

 

<!DOCTYPE html>

<html>

<head>

<meta http-equiv="content-type" content="text/html;charset=utf-8">

<title>页面一</title> 

</head>

<body>

 

         <p style="border:1px solid blue;height:200px"></p>

</body>

</html>

 

虚心的边框:

 

<!DOCTYPE html>

<html>

<head>

<meta http-equiv="content-type" content="text/html;charset=utf-8">

<title>页面一</title> 

</head>

<body>

 

         <p style="border:1px dotted blue;height:200px"></p>

</body>

</html>

 

2、css样式之内外边距

 

外边距:margin

 

<!DOCTYPE html>

<html>

<head>

<meta http-equiv="content-type" content="text/html;charset=utf-8">

<title>页面一</title> 

</head>

<body>

 

    <p style="height:200px;border:1px solid red;">

        <p style="height:30px;background-color:#999;margin-top:10px;margin-left:1250px;margin-right:10px;">

        guojianglin

        </p>

    </p>

</body>

</html>

 

内边距:padding

 

<!DOCTYPE html>

<html>

<head>

<meta http-equiv="content-type" content="text/html;charset=utf-8">

<title>页面一</title> 

</head>

<body>

 

    <p style="height:200px;border:1px solid red;">

         <p style="height:30px;background-color:#999;padding-top:50px;">

          guojianglin

         </p>

    </p>

 

</body>

</html>

Tags:CS SS S样 样式 
作者:网络 来源:不详