Similer to how you can write:
margin: 12px 8px 10px 8px;
//or
padding: 12px 8px 10px 8px;
is there a way to shorthand position properties?
//from
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
//to
position: absolute 0 0 0 0;
or something?
MDN doesn't seem to have anything, but it could be called something else or a different method entirely.