In CSS we can define:
margin-top: 10px;
margin-right: 1px;
margin-bottom: 1px;
margin-left: 1px;
or just short:
margin: 10 1 1 1;
we also can define:
border-left -right -bottom -top ...
or short:
border:1px solid black;
for defining the dimensions of an element we need:
width: 150px;
height: 200px;
why isn't there something like:
dimension: 150px 200px;
or does something similar exist and i just dont know it?
(the reason why i ask: i always misstype 'dth' -> 'dht' and 'ght' -> 'gth' and want to blame someone)