在CSS中我们可以定义:
margin-top: 10px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px;
或者只是简短:
margin: 10 1 1 1;
我们也可以定义:
border-left -right -bottom -top ...
或短:
border:1px solid black;
用于定义我们需要的元素的尺寸:
width: 150px; height: 200px;
为什么不是这样的:
dimension: 150px 200px;
或者存在类似的东西,我只是不知道它?
(我问的原因是:我总是错误地输入’dth’ – >’dht’和’ght’ – >’gth’并想责怪别人)