hagbard_celine
Mitglied
Ich will eine List machen, in der jeder Eintrag ein Div ist, der wiederum mehrere Divs beinhaltet, die nebeneinander ausgerichtet sind.
Der Grüne Div soll so sein wie er jetzt ist, der Rot und der Blaue soll neben den Grünen, so wie in der Grafik Grau eingezeichnet.
Der Grüne Div soll so sein wie er jetzt ist, der Rot und der Blaue soll neben den Grünen, so wie in der Grafik Grau eingezeichnet.
HTML:
<style>
.ListItem { position:relative; margin:5px; padding:5px; border: 1px solid #EACD00; }
.ListItemThumbBox { position:relative; width:150px; height:120px; border: 1px solid #00FF00; }
.ListItemThumb { cursor:pointer; }
.ListItemTitleBox { position:relative; border: 1px solid #FF0000; }
.ListItemTextBox { position:relative; border: 1px solid #0000FF; }
</style>
HTML:
<div id="MovieList" style="border: 1px solid rgb(0, 0, 0); position: absolute; top: 32px; left: 446px; width: 500px; height: 500px;">
<div class="ListItem">
<div class="ListItemThumbBox">
<img src="http://img.youtube.com/vi/1URzkk-oa28/2.jpg" class="ListItemThumb"></div>
<div class="ListItemTitleBox">
Berlin wall fall @ Potsdamer Platz 1989 in Berlin</div>
<div class="ListItemTextBox">
Freundliche Leihgabe Aufnahmen vom 12 November 1989</div>
</div>
<div class="ListItem">
<div class="ListItemThumbBox">
<img src="http://img.youtube.com/vi/EcFPPIkdtYQ/2.jpg" class="ListItemThumb"></div>
<div class="ListItemTitleBox">
Berlin Wall Fall (Wonder) 1989 Music Video</div>
<div class="ListItemTextBox">
freundliche Leihgabe: a footage of pre wall fall and wall fall pics
from 1986 1989 to Jan 1 1990 as Video: Wunder geschehen = wonder could
happen</div>
</div>
<div class="ListItem">
<div class="ListItemThumbBox">
<img src="http://img.youtube.com/vi/hrPJYF2GzIs/2.jpg" class="ListItemThumb"></div>
<div class="ListItemTitleBox">
Tear Down the Wall</div>
<div class="ListItemTextBox">
1989 rock music video documenting the historic fall of the Berlin Wall.
This Bellaphon Records hit single charted in Germany &amp; Austria in
November of 1989 as the Berlin Wall came down. Written &amp; produced
by Larry Dunn.</div>
</div>
</div>