如上图,两个按钮要一直固定在某个位置,并且不随分辨率的变大距离左边变宽
<div class="tools" style="display: block;">
<a href="javascript:;" class="refresh-tool"></a>
<a href="javascript:;" class="top-tool"></a>
</div>
.tools {
position: fixed;
left: 50%;
bottom: 150px;
display: none;
margin-left: 510px;
}
如果按照下面的写法,大屏幕电脑的这两个按钮会靠右,距离左边内容很远
.tools {
position: fixed;
left: 85%;
bottom: 150px;
display: none;
}