我有这个标记:
<body>
<div class="prevBtn"> <a> < </a> </div>
<div id="player"> some code </div>
<div class="nextBtn"> <a> > </a> </div>
</body>
我正在尝试获得这种布局:
注意:previos 和 next 按钮靠近#player
我正在尝试这样:
.nextBtn{
float:left;
width:15%;
margin-top:180px;
}
.nextBtn a{
float:right;
}
.player{
float:left;
width:70%;
margin-top:100px;
}
.prevBtn{
float:right;
width:15%;
margin-top:180px;
}
.rightBtn a{
float:left;
}
问题是,如果分辨率太大或太小,它就不会像布局一样,
对于任何解决方案,我怎样才能实现这一目标?