我将div相对定位在图像上,就像许多其他视图一样,我希望页面在不同的屏幕上看起来完全一样,但是事实证明它并不像希望的那么简单。
示例页面:http://webpv.esss.lu.se/LEBTTV.html
我尝试用百分比表示顶部和底部属性的相对位置,但结果较差。
重叠式div类
.img_overlay {
background: #ffffff5c;
width: 160px;
height: 80px;
position: absolute;
z-index: 3;
text-align: center;
}
单个重叠div位置示例
#LEBT_IMG_sol_1 {
margin-top: -40%;
margin-left: 28.5%;
}
容器CSS
#systemImage {
max-width: 100% !important;
width: auto !important;
position: relative;
z-index: 1;
height: 2000px;
}
.container:not(.webPV_tile) {
overflow: hidden;
max-width: 1000px !important;
width: 90%;
min-height: 500px;
margin: auto;
background: #ffffff;
border-radius: 15px;
position: relative;
}
我希望所有屏幕上的页面都相同,最后但并非最不重要的是包括移动设备。