我的图像右侧有一个绝对位置的按钮。调整窗口大小时,按钮应保持原位。
我可以在每次小屏幕更改后使用愚蠢的媒体查询来执行此操作,但这似乎不正确。
什么是最好的解决方案?我还在这里创建了一个jsFiddle:http://jsfiddle.net/5t1zu6px/2/
.post-image {
width:40%;
position:relative;
float:left;
}
button {
position:absolute;
bottom:10%;
right:-9%;
}
由于
答案 0 :(得分:1)
我会使用无序列表。请参阅以下解决方案:
自:
<div class="post-image">
<img src="http://no11.ee/hulk/wp-content/uploads/2015/04/meeskond.png">
<button>BUTTON</button>
</div>
要:
<div class="pst-img">
<ul>
<li><img src="http://no11.ee/hulk/wp-content/uploads/2015/04/meeskond.png" /></li>
<li><button>BUTTON</button></li>
</ul>
</div>
自:
.post-wrap {
width:100%;
height:377px;
}
.post-image {
width:40%;
position:relative;
float:left;
}
button {
position:absolute;
bottom:10%;
right:-9%;
}
.post-text {
width:60%;
float:left;
text-align:center;
}
p {
padding:40px;
}
要:
.pst-img ul li {
display:inline-block; padding-right:100px; list-style:none; }
.post-wrap {
width:100%;
height:377px;
}
.post-text {
width:60%;
float:left;
text-align:center;
}
p {
padding:40px;
}
JSFiddle链接更新:http://jsfiddle.net/5t1zu6px/7/
希望这有帮助!