gpt4 book ai didi

css - 伪元素存在但不可见

转载 作者:太空宇宙 更新时间:2023-11-03 22:40:13 24 4
gpt4 key购买 nike

模式在内容注入(inject)到页面之前,但它不可见,请问是什么问题?

.aloha {
font-family: Medium;
font-size: 74px;
color: green;
position: relative;
display: inline-block;
margin: 0;
height: 85px;


}

.aloha:before {
width: 100%;
height: 85px;
color: red;
content: attr(data-text);
display: block;
}
  <h1 date-text='TEXT' class='aloha'>TEXT</h1>

最佳答案

您的 HTML 中有错字。替换 date-textdata-text在你的 <h1>元素:

.aloha {
font-family: Medium;
font-size: 74px;
color: green;
position: relative;
display: inline-block;
margin: 0;
height: 85px;
}
.aloha:before {
width: 100%;
height: 85px;
color: red;
content: attr(data-text);
display: block;
}
<h1 data-text='TEXT' class='aloha'>TEXT</h1>

关于css - 伪元素存在但不可见,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44331530/

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