gpt4 book ai didi

html - 单词上的自定义行

转载 作者:太空宇宙 更新时间:2023-11-03 19:56:16 25 4
gpt4 key购买 nike

我试着只在一个词上画一条线。改变它的大小和位置。

这里是我想要的结果:

enter image description here

我尝试使用带背景图像的跨度但没有成功。

https://jsfiddle.net/XZKS/193u9dam/

还有其他问题,背景图像在使用本地镜像时不起作用。

我的网站树状结构:

  • _include

    • CSS
      • 样式.css
    • js
    • 图片
      • 线条.png

背景图像:url("../img/line.png");

希望有人能帮帮我,谢谢

最佳答案

试试这个:

.myWordWithLine {
position: relative;
}

.myWordWithLine::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
z-index: -1;
height: 24px; // your line height
background-color: red; // your line color
}

关于html - 单词上的自定义行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41979225/

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