Hallo, ich habe eine Div-Box mit Textinhalt. Jetzt wollte ich es verschönern, indem ich den Text als Blocksatz setzte. Dafür benutzte ich "text-align:justify;"
Leider sorgt der Blocksatz dafür, dass die DivBox ihre Breite nicht einhält und so drei about-boxen nebeneinander geflotet nicht mehr auf die Breite der Seite passen wie zuvor (1200px).
Wie kann ich das fixen?
Grüße
Lycia
Leider sorgt der Blocksatz dafür, dass die DivBox ihre Breite nicht einhält und so drei about-boxen nebeneinander geflotet nicht mehr auf die Breite der Seite passen wie zuvor (1200px).
Wie kann ich das fixen?
Grüße
Lycia
HTML:
<div class="AboutBox">
<h2>Background</h2>
<div class="AboutContent">
<p>We are a small group of amateur developers. In our free time we develop games and useful programmes. Our motivation is to make others with the apps happy or the daily life easier.</p>
</div>
</div>
CSS:
.AboutBox
{
width: 380px;
margin: 5px;
float: left;
}
.AboutContent
{
width: 386px;
height: 130px;
background: #FFF3B5;
border: #D1AA31 1px solid;
padding: 10px 5px 0px 5px;
text-align:justify;
}
Zuletzt bearbeitet von einem Moderator: