在主应用div内将固定位置div定位到% width,可以通过以下步骤实现:
示例代码如下:
<style>
.main-app {
position: relative;
width: 100%;
height: 200px;
background-color: #f2f2f2;
}
.fixed-div {
position: absolute;
left: 0;
right: 0;
width: 50%;
height: 50px;
background-color: #ff0000;
}
</style>
<div class="main-app">
<div class="fixed-div"></div>
</div>
这样,固定位置的div就会在主应用div内水平居中,并且宽度为主应用div宽度的50%。你可以根据实际需求调整子div的高度和背景颜色。
腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云