Hallo,
ich bin gerade dabei ein kleines (!) Gästebuch zu schreiben.
Nun stehe ich vor dem Problem, dass ich jeden Eintrag in einer anderen Farbe komplett unterlegen möchte.
Da ich allerdings nicht weiß, wie viele Zeilen denn der User schreibt, kann ich ja auch keinen "height"-Wert angeben.
Ich hab jetzt auch schon sowas wie min-height gefunden, aber wie sage ich dem, dass er das div größer machen soll?
Hier mal mein bisheriger Code:
Code
<style type="text/css">
#red {background-color: #521302; width: 555px; min-height: 50px; color: #FFFFFF; position: relative;}
#grey {background-color: #bbbbbb; width: 555px; height: 50px; color: #000000; position: relative;}
</style>
<body>
<div id="red">
<span style="margin: 0px 0px 0px 0px; position: absolute;">
Name: Pimmelchen
</span>
<span style="margin: 0px 0px 0px 180px; position: absolute;">
E-Mail: pummeluff@googlemail.com
</span>
<span style="margin: 0px 0px 0px 407px; position: absolute;">
Datum: 25.02.2009 - 12:16 Uhr
</span>
<span style="margin: 20px 0px 0px 0px; position: absolute;">
Text: <span style="font-size: 12px;">Hey Jungs, wie gehts euch so. War voll toll da, was macht ihr heute noch so?Hey Jungs, wie gehts euch so. War voll toll da, was macht ihr heute noch so?Hey Jungs, wie gehts euch so. War voll toll da, was macht ihr heute noch so?</span>
</span>
</div><br>
<div id="grey">
<span style="margin: 0px 0px 0px 0px; position: absolute;">
Name: Pimmelchen
</span>
<span style="margin: 0px 0px 0px 180px; position: absolute;">
E-Mail: pummeluff@googlemail.com
</span>
<span style="margin: 0px 0px 0px 407px; position: absolute;">
Datum: 25.02.2009 - 12:16 Uhr
</span>
<span style="margin: 20px 0px 0px 0px; position: absolute;">
Text: <span style="font-size: 12px;">Hey Jungs, wie gehts euch so. War voll toll da, was macht ihr heute noch so?</span>
</span>
</div>
</body>
Alles anzeigen