Hallo,
volgendes Problem:
CSS:
.div {
position: absolute;
padding: 20px;
float: left;
width: 350px;
}
HTML:
<div class="div">
//Inhalt
</div>
Leider wird das was oben im Code steht nicht ausgeführt!
Aber wenn ich es so mache:
<div class="div" style="position: absolute; padding: 20px; float: left; width: 350px;">
//Inhalt
</div>
Geht alles.
Wo liegt der Fehler?
Mfg. BNS