CSS ??(??)
CSS Margin(margin)
CSS Margin(margin) ??? ?? ??? ??? ?????.
Margin
margin? ?? ?? ??(?? ???)? ????. ??? ???? ??? ??? ?????.
??? ??? ??, ???, ?? ? ??? ??? ????? ??? ? ????. ?? ??? ? ?? ???? ?? ?????. ??? ??, ???, ???? ?? ??? ? ????.
CSS ?? ??
CSS??? ???? ??? ??? ??? ? ????De ?? | |
---|---|
?? ??. ??? ??? ?? ?? ??? ?????. | |
??? ??? ??? ?????. | |
??? ?? ??? ?????. | |
??? ??? ??? ?????. | |
??? ?? ??? ?????. |
???? ?? ?? ?? ?????
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文網(wǎng)(php.cn)</title> <style> p { background-color:yellow; } p.margin { margin-top:100px; margin-bottom:100px; margin-right:50px; margin-left:50px; } </style> </head> <body> <p>這是一個沒有指定邊距大小的段落。</p> <p class="margin">這是一個指定邊距大小的段落。</p> </body> </html>
????? ???? ??? ???
Margin - ?? ????? ????? ??? ???? ?? ?? ?? ?? ?? ??? ???????. ?? ?? ????? ???.
?? ?? ??? ?? ??? "margin"???.
? <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>php中文網(wǎng)(php.cn)</title>
<style>
p
{
background-color:yellow;
}
p.margin
{
margin:100px 50px;
}
</style>
</head>
<body>
<p>這是一個沒有指定邊距大小的段落。</p>
<p class="margin">這是一個指定邊距大小的段落。</p>
</body>
</html>
????? ???? ??? ???.
margin ??? 1~4?? ?? ?? ? ????. ??
margin: 25px 50px 75px 100px;?? ??? 25px
??? ??? 50px
?? ??? 75px
?? ??? 100px
margin
:25px 50px px;
?? ?? ? 25px
??? 50px
?? ??? 75px
margin
: 25px 50px;
all 4?? ??? ?? 25px
?? ???
?? ?? ????? ??? ?? ???? <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>PHP中文網(wǎng)(php.cn)</title>
<style>
p{background-color: #8de943
}
p.ex1 {margin-top:2cm;}
p.bottommargin {margin-bottom:25%;}
</style>
</head>
<body>
<p>一個沒有指定邊距大小的段落。</p>
<p class="ex1">一個2厘米上邊距的段落。</p>
<p class="bottommargin">這是一個用百分比設(shè)置的下邊距大小的段落。</p>
</body>
</html>
????? ???? ??? ???