Hallo,
Habe eine Box die sich am Inhalt ausrichten soll, das klappt allerdings nur im FF im IE wird das allerdings verkehrt dargestellt
Sinn der Sache ist, eine flexible Box die sich nach dem Inhalt ausrichtet. Was natürlich auch geht die Sache mit Tabellen zu lösen. Dort zieht einfach nur die Höhe und Breite und passt die anderen Tabellenwerte an.
Danke
Habe eine Box die sich am Inhalt ausrichten soll, das klappt allerdings nur im FF im IE wird das allerdings verkehrt dargestellt
Code:
.box {
margin:50px auto;
width: 800px;
background: #ff0000;
}
.box .left {
float: left;
}
.box .right {
float: right;
}
.box p {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:10px;
margin: 0;
padding-left: 10px;
padding-right: 10px;
clear: both;
}
div.clear {
clear: both;
height: 0px;
line-height: 0px;
}
HTML:
<div class="box"> <img src="topleft.gif" class="left" alt="" width="10" height="10"/> <img src="topright.gif" class="right" alt="" width="10" height="10"/>
<p> Ut enim ad minim veniam, duis aute irure dolor lorem ipsum dolor sit amet. Sunt in culpa consectetur adipisicing elit, ut labore et dolore magna aliqua. Ullamco laboris nisi sed do eiusmod tempor incididunt quis nostrud exercitation. Velit esse cillum dolore sunt in culpa eu fugiat nulla pariatur. Mollit anim id est laborum.</p>
<p>Consectetur adipisicing elit, quis nostrud exercitation ut enim ad minim veniam. Excepteur sint occaecat. Lorem ipsum dolor sit amet, ut aliquip ex ea commodo consequat.</p>
<img src="bottomleft.gif" class="left" alt="" width="10" height="10"/> <img src="bottomright.gif" class="right" alt="" width="10" height="10"/>
<div class="clear"></div>
Sinn der Sache ist, eine flexible Box die sich nach dem Inhalt ausrichtet. Was natürlich auch geht die Sache mit Tabellen zu lösen. Dort zieht einfach nur die Höhe und Breite und passt die anderen Tabellenwerte an.
Danke