我的页面有一个固定宽度的大 div,如下所示:
#index_body{
width: 1010px;
background-image: url('images/main_bg_dark.png');
margin: auto;
overflow: hidden;
min-height: 50px;
padding-bottom: 10px;
border-radius: 7px;
-moz-box-shadow: 0 5px 15px #000000;
-webkit-box-shadow: 0 5px 15px #000000;
box-shadow: 0 5px 15px #000000;
}
我想在页面右侧(垂直中间)添加按钮(20x20px) - 仍然在 index_body 旁边。
所以按钮有代码,如下所示:
#butt {
width:20px;
height:20px;
background: url('images/scrollUp.png');
position:fixed;
top:50%;
left:WHAT SHOULD BE HERE??
}
因为这取决于实际分辨率。我的 index_body 始终居中。如果我更改分辨率,我的按钮将移动到左右...