Nieuw lid |
|
voorbeeldje:
originele div:
#divje {
height: 110px;
width: 110px;
}
#divje { height: 110px; width: 110px; }
zelfde divje, maar dan met padding:
#divje {
height: 100px;
padding: 5px;
width: 100px;
}
#divje { height: 100px; padding: 5px; width: 100px; }
er wordt boven, onder, rechts en links 5px padding toegevoegd, waardoor er bij de width en de height 10px bijkomt.
Om dit te vermijden moet je de width en de height gewoon 10px kleiner zetten |