我想要一个DIV 200像素位于中心的左边.
我目前正在使用以下代码,但是在更高分辨率的显示器(例如1920×1080)上,DIV正在滑倒:
.hsonuc { position: absolute; top: 20px; margin:auto; margin-left:200px; display:none; }
我想要实现的
解决方法
简单地将其定位在右边(右:50%;)的50%,然后使用margin-right:200px; (
example).
HTML
<div class="hsonuc">DIV</div>
CSS
.hsonuc { position:absolute; top:20px; right:50%; /* Positions 50% from right (right edge will be at center) */ margin-right:200px; /* Positions 200px to the left of center */ }