css – 如何将DIV位置设置为中心左侧的200像素

前端之家收集整理的这篇文章主要介绍了css – 如何将DIV位置设置为中心左侧的200像素前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想要一个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 */
}

猜你在找的CSS相关文章