Hallo!
Die Padding angaben ziehen hier für den IE erst mal nicht, wegen: position:absolute;...top:0; left:0;.Das heisst er stellt das ganze in der linken oberen ecke dar, ohne die padding angaben zu beachten.
Netscape positioniert das ganze dann aber nochmal anders...
Sorry, das stimmt nicht! Netscape kann keinen padding-bottom.
<html>
<head>
<title>Test 4</title>
<style type="text/css">
#m1 {
position:absolute;
top:0;
left:0;
width:100px;
padding:10px 0px 10px 10px;
background:red;
layer-background-color:red;
}
</style>
</head>
<body>
<div id="m1">
Test text - ob die padding gilt stellt sich gleich heraus
</div>
</body>
</html>
Grüße
Thomas