1

http://jsfiddle.net/FUqhb/

我需要移动播放器,使其始终保持在 CD 封面下方。我无法更改 html(我可以添加内容,但无法更改顺序或删除里面的内容),也无法为播放器设置固定的边距顶部。除此之外,还有什么想法吗?

我试过 display:block 但它不起作用,可能是因为它是一个绝对定位的 div。

4

2 回答 2

1

jsfiddle:http: //jsfiddle.net/FUqhb/11/

您可以添加一个 divheight:200px来将栏向下推。

<div class="audio_player">
     <div style="height:200px"></div>
     <embed type="application/x-shockwave-flash" src="http://assets.tumblr.com/swf/audio_player_black.swf?audio_file=somefile.mp3" height="27" width="207"/>
</div>
于 2012-04-23T19:00:42.047 回答
0

关闭套筒的绝对定位:

.turntable {
    width: 100%;
    height: 200px; /* cd height */
    position: relative;
}

.artwork,
.gloss,
.sleeve {

    width: 100%;
    height: 100%;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}

.gloss {
    background: url('http://i.imgur.com/JrVdR.png');
    position:absolute;
    top:0;left:0
}

.sleeve {
    background: url('http://i.imgur.com/VjVh1.jpg') no-repeat;
    width: 200px; /* cd width */
}
于 2012-04-23T18:59:18.570 回答