- width, height – wymiary elementu (jednostki: px, %, vh i vw, cm, em)
- position – pozycja elementu; absolute – bezwzględna, relative – względna
- left, right, top, bottom – ułożenie elementu (position: absolute)
- border: obramowanie
- color: kolor tekstu
div.nazwa{
width: 200px;
height: 15vh;
position: absolute;
left: 0%;
right: 10px;
border: 1px solid #666666;
color: white;
}