html绝对定位
父级元素中添加一个相对定位position:relative那么在设置子元素的绝对定位时,子元素就已此为开始设置的参照位置(参照物)
<div style="width:1000px;margin:0 auto;height:300px;background:pink;position:relative;">
<div style="width:300px;height:150px;background:red;position:absolute;left:50%;margin-left:-150px;"></div>
</div>
版权声明:若无特殊注明,本文皆为《菜鸟站长》原创,转载请保留文章出处。
本文链接:html绝对定位 - https://wziyi.com.cn/?post=38