kan dat topic ook niet vinden
dit illustreert het wel trouwens;
HTML:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| <html>
<head>
<style type="text/css">
div {width:200; height:50; background-color:silver; margin:5;}
.bordered {border-width:5; border-style:solid; border-color:gray;}
.padded {padding:5;}
.altered {-moz-box-sizing:border-box; box-sizing:border-box;}
</style>
</head>
<body >
<div>normal div</div>
<div class="bordered">border 5</div>
<div class="padded">padding 5</div>
<div class="padded bordered">padding/border 5</div>
<div class="padded altered">altered model padding5</div>
<div class="padded bordered altered">
altered model padding/ border 5
</div>
</body>
</html> |
In IE zijn ze allemaal hetzelfde, in moz niet, maar je kan het model wat je wil dus zelf instellen