ser ikke så mye rot her jeg hvertfall. Men du kan jo sette sammen litt flere elementer
HTML Code:
background: url(images/body.png) repeat-y;
istedet for:
HTML Code:
background-repeat: repeat-y;
background-image: url(images/body.png);
og istedet for:
HTML Code:
padding-top: 25px;
padding-right: 10px;
padding-left: 10px;
margin-right: 0px;
margin-left: 129px;
kan du skrive:
HTML Code:
padding: 25px 10px 0px 10px;
margin: 0px 0px 0px 129px;
etc etc etc
- padding:25px 50px 75px 100px;
- top padding is 25px
- right padding is 50px
- bottom padding is 75px
- left padding is 100px
- padding:25px 50px 75px;
- top padding is 25px
- right and left paddings are 50px
- bottom padding is 75px
- padding:25px 50px;
- top and bottom paddings are 25px
- right and left paddings are 50px
- padding:25px;
- all four paddings are 25px
Og et lite tips er å alltid sjekke at siden din validerer, både CSS og HTML... Validerer det, så fungerer det som oftest.