在css中为所有边距边写一行是否更快?

时间:2017-08-02 12:13:27

标签: css margin dimension

我总是尝试使用单行方法声明例如元素的边缘。

margin: <margin-top> || <margin-right> || <margin-bottom> || <margin-left>

我想知道这实际上是否比四线方法运行得更快。

margin-top: <margin-top>;
margin-right: <margin-right>
margin-botttom: <margin-bottom>
margin-left: <margin-left>

1 个答案:

答案 0 :(得分:1)

你可以使用速记属性

Ex: margin: top right bottom left;
In place of top,right,bottom,left you will give values.