Tach,
also ich such schon, finde aber eine repeatfunktion nur für den background.
Also ich habe folgendes, ich habe eine DIV Box die ich für meine News verwenden will. Jede einzelne News soll in einer solcher Box sein. Die Breite ist hierbei Statisch, nur die Höhe natürlich nicht, und da hapert es.
Die Grafiken mittels Height zu strecken ist kein Problem, da gibt es keine Qualitätsverluste oder sonstiges. Nur weiß ich echt nicht wie ich das Anfangen soll.
Bin für jeden Typ dankbar.
CSS:
HTML:
also ich such schon, finde aber eine repeatfunktion nur für den background.
Also ich habe folgendes, ich habe eine DIV Box die ich für meine News verwenden will. Jede einzelne News soll in einer solcher Box sein. Die Breite ist hierbei Statisch, nur die Höhe natürlich nicht, und da hapert es.
Die Grafiken mittels Height zu strecken ist kein Problem, da gibt es keine Qualitätsverluste oder sonstiges. Nur weiß ich echt nicht wie ich das Anfangen soll.
Bin für jeden Typ dankbar.
CSS:
HTML:
#box { position:relative; width: 500px; margin-left:auto; margin-right: auto; }
#box img { position:absolute; }
#box img.box_tl { top:-20; left:-20; }
#box img.box_t { top:-20; left:0; width: 500px; height: 20;}
#box img.box_tr { top:-20; right:-20; }
#box img.box_l { top:0; left:-20; }
#box img.box_r { top:0; right:-20; }
#box img.box_bl { bottom:-20; left:-20; }
#box img.box_b { bottom:-20; left:0; width: 500px; height: 20;}
#box img.box_br { bottom:-20; right:-20; }
HTML:
<div id="box">
<img src="images/box/box_tr.png" alt="" class="box_tr">
<img src="images/box/box_t.png" alt="" class="box_t">
<img src="images/box/box_tl.png" alt="" class="box_tl">
<img src="images/box/box_l.png" alt="" class="box_l">
<img src="images/box/box_r.png" alt="" class="box_r">
<img src="images/box/box_br.png" alt="" class="box_br">
<img src="images/box/box_b.png" alt="" class="box_b">
<img src="images/box/box_bl.png" alt="" class="box_bl">
<p>
Ich bin nur ein Text.<br>
Ich bin nur ein Text.<br>
Ich bin nur ein Text.<br>
Ich bin nur ein Text.<br>
Ich bin nur ein Text.<br>
</p>
</div>