你好,
我尝试使用专辑图片和一些信息创建列。我希望信息在它旁边的图像上覆盖一点点。就像在这张图片上:
但是,要么我打破左侧浮动,要么文本完全位于图像等之上。等等。除了所需的结果之外的所有内容。
一些帮助会很棒,这是一个jsfiddle:
一小段代码:
<div class="entrie">
<img class="entrieImage" src="http://doekewartena.nl/temp/images/img02.png"/>
<div class="entrieInfo">
<div class="band">Kids for Cash</div>
<div class="album">No More Walls E.P.</div>
<div class="label">...</div>
<div class="year">1986</div>
<p>-</p>
<div class="tags">rousseau, green, woodsy, band photo, 12IN, tree, civilization, Atco, 1960's, Fuzz
</div>
</div>
</div>
CSS:
.entrie {
float: left;
}
.entrieInfo {
width: 200px;
float: left;
margin-left: 10px;
}
.entrieImage {
/* if you only set the width then the height will be set automaticly proportional*/
width: 300px;
float: left;
}