CSS的margin有什麼作用

來源:互聯網
上載者:User
首先我們要知道margin是什麼意思,margin 屬性是css用於在一個聲明中設定所有 margin 屬性的簡寫屬性,是用於控制每一塊元素之間距離的屬性。他們是透明不可見的。

margin屬性包含了margin left :距左元素塊距離(設定距左內邊距) ;margin top:距頭頂(上)元素塊距離(設定距頂部元素塊距離);margin right :距右元素塊距離(設定距右元素塊距) ;margin bottom :底元素塊距離(設定距低(下)元素塊距)。其二維構建圖可見CSS屬性二維圖。

margin left用法:margin-left:10px; 這個意思距離左元素塊距10像素,可跟百分比如(margin-left:10%; 距離左元素塊10%的距離)css margin-left教程;

margin right用法:margin-right:10px; 這個意思距離右邊元素塊距10像素,可跟百分比如(margin-right:10%; 距離右邊元素塊10%的距離);

margin top用法:margin-top:10px; 這個意思距離頂邊元素塊距10像素,可跟百分比如(margin-top:10%; 距離頂邊元素塊10%的距離)css margin-top;

margin bottom用法:margin-bottom:10px; 這個意思距離低邊元素塊距10像素,可跟百分比如(margin-bottom:10%; 距離底邊元素塊10%的距離)css margin-bottom;

注意margin中間的連結“ - ”號,設定距離值時用“ : ”並賦予值,並以“ ; ”結束,並且全部用小寫半形字母。

如果是左右上下都需要設定margin的值時可以簡寫來實現,以最佳化css 。

如簡寫方式有:

margin:10px; 意思就是上下左右元素塊距離就是10px(10像素)等於margin-top:10px; margin-bottom:10px; margin-left:10px; margin-right:10px; 一樣效果簡寫;

margin:5px 10px; 意思上下元素塊距離為5px,左右的元素塊距離為10px,等於margin-top:5px; margin-bottom:5px; margin-left:10px; margin-right:10px; 一樣效果簡寫;

margin:5px 6px 7px; 意思上元素塊距離5px,下元素塊距離為7PX,左右元素塊距離為6px,等於margin-top:5px; margin-bottom:7px; margin-left:6px; margin-right:6px; 一樣效果簡寫;

margin:5px 6px 7px 8px; 意思上元素塊為5px,右元素塊距離為6px ,下元素塊距離為7px,左元素塊距離8px,等於等於margin-top:5px; margin-right:6px; margin-bottom:7px; margin-right:8px; 一樣效果簡寫;

CSS的margin屬性的使用方法就這麼多,需要的朋友可以儲存一下,也請大家持續關注本站的其他更新。

相關閱讀:

CSS3 畫各種基本圖形小技巧


html和css製作QQ企鵝教程


你懂這些css原理嗎?

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.