1. 程式人生 > >CSS 內邊距 外邊距

CSS 內邊距 外邊距

默認 內邊距 soft back margin size span strong font

CSS 內邊距 外邊距

<html>
    <!--  style="margin: 0 auto" 將網頁上方空白邊距填滿-->
    <body style="margin: 0 auto">
    <div style="background-color: red">xxx</div>
</body>
</html>

:margin默認邊距=8px。
:margin-top:10px 外邊距:距離上面的高度有多少。
:padding-top:10px 內邊距:內邊距擴充源標簽的大小。
:auto 表示左右兩邊自動。

:padding: 上 右 下 左。

CSS 內邊距 外邊距