CSS的margin有什么作用

php中世界最好的语言
Freigeben: 2017-11-21 16:09:47
Original
5108 Leute haben es durchsucht

首先我们要知道margin是什么意思,margin 属性是css用于在一个声明中设置所有 margin 属性的简写属性,是用于控制每一块元素之间距离的属性。他们是透明不可见的。

margin属性包含了margin left :距左元素块距离(设置距左内边距) ;margin top:距头顶(上)元素块距离(设置距顶部元素块距离);margin right :距右元素块距离(设置距右元素块距) ;marginbottom:底元素块距离(设置距低(下)元素块距)。其二维构建图可见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原理吗?

Das obige ist der detaillierte Inhalt von CSS的margin有什么作用. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!