亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

CSS ??(??)

CSS Margin(margin)

CSS Margin(margin) ??? ?? ??? ??? ?????.


Margin

margin? ?? ?? ??(?? ???)? ????. ??? ???? ??? ??? ?????.

??? ??? ??, ???, ?? ? ??? ??? ????? ??? ? ????. ?? ??? ? ?? ???? ?? ?????. ??? ??, ???, ???? ?? ??? ? ????.


CSS ?? ??

CSS??? ???? ??? ??? ??? ? ????

propertiesmarginmargin-bottommargin-leftmargin-rightmargin-top
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>
????? ???? ??? ???


???? ??
||
<!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>