gpt4 book ai didi

html - 图片上的文字叠加

转载 作者:太空宇宙 更新时间:2023-11-04 06:42:10 24 4
gpt4 key购买 nike

我正在使用主 slider 插件。slide1 2 3 都有不同的类。试图在图像上放置文本但不显示。我试过这个却什么也看不到

.classnameslide1:before {
content: 'Text inserted before via CSS';
}
and
.classnameslide1:after{
content: 'Text inserted before via CSS';
}

最佳答案

使用父元素的相对位置和伪元素的绝对位置,比如,

.classnameslide1 {position: relative; z-index: 1}
.classnameslide1:after {content: 'Text inserted before via CSS'; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 3}

关于html - 图片上的文字叠加,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53645972/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com