Hallo
ich möchte aus vier div Containern einen Würfel bauen:
Firebird macht es richtig. Nur hätte ich gerne, dass es unter Opera und dem IE auch funktioniert
. Wie könnte ich das umgehen?
ich möchte aus vier div Containern einen Würfel bauen:
Code:
#textTopLeft {width:300px;
height:200px;
border-right:2px dashed #ffcc00;
border-bottom:2px dashed #ffcc00;
float:left;
padding:3px;
}
#textTopRight {width:300px;
height:200px;
border-bottom:2px dashed #ffcc00;
float:left;
padding:3px;
padding-left:10px;
}
#textBotLeft {clear:left;
width:300px;
height:200px;
border-right:2px dashed #ffcc00;
float:left;
padding:3px;
}
#textBotRight {
width:300px;
height:200px;
float:left;
padding:3px;
padding-left:10px;
}
<div id="textTopLeft">
oben links
</div>
<div id="textTopRight">
oben rechts
</div>
<div id="textBotLeft">
unten links
</div>
<div id="textBotRight">
unten rechts
</div>
