CSS 固定图片上文字,防止页面缩放移动
Your Text
.image-container {
position: relative;
}
.image-text {
position: absolute;
top: 0;
left: 0;
}
.image-text {
transform: scale(1);
transform-origin: top left;
}
使用以上代码,无论页面如何缩放,文字都会保持在图片的左上角位置,并且大小不会改变。
注意:上述代码只是示例,具体的样式设置可以根据实际需求进行调整。
原文地址: https://www.cveoy.top/t/topic/qnJK 著作权归作者所有。请勿转载和采集!