CSS-Kurzform zur Positionierung

Es gibt keine Abkürzung fürtop right bottom left oder fürwidth undheight ?

Ich habe eine Menge CSS davon

#topDiv {
    position:absolute;
    top:0px;
    left:0px;
    right:0px;
    height:100px;
}
#centerDiv {
    position:absolute;
    top:100px;
    bottom:120px;
    left:0px;
    right:0px;
}
#consoleDiv {
    position:absolute;
    left:0px;
    right:0px;
    bottom:0px;
    height:120px;
}

Ich würde so etwas gerne machen

position: absolute 10px 50px 50px 100px;

oder

size: 400px 200px; 

Antworten auf die Frage(4)

Ihre Antwort auf die Frage