當前位置:首頁 » 網頁前端 » web中上邊距
擴展閱讀
webinf下怎麼引入js 2023-08-31 21:54:13
堡壘機怎麼打開web 2023-08-31 21:54:11

web中上邊距

發布時間: 2023-08-30 10:22:10

㈠ html中div的外邊距和內邊距都是什麼意思,怎麼設置

內邊距padding的意思是: 邊框與內容之間的距離。

外邊距margin的意思是:邊框與邊框之間的距離。

拓展資料

外邊距margin

左邊距 margin-left:數值 | autoauto:即距離這個邊最遠的距離;

右邊距: margin-right:數值 | auto;

上邊距: margin-top:數值 ,這里不能用auto;

下邊距: margin-bottom:數值 這里也不能用auto;

外邊距的復合寫法

1、margin: 0px(上) 0px(右) 0px(下) 0px(左);

2、margin: 0px(上) 0px(左右) 0px(下);

3、margin: 0px(上下邊距) 0px(左右邊距);

4、margin: 0px(上下左右邊距都是0px);

例子: