gpt4 book ai didi

html - CSS "content"不工作

转载 作者:技术小花猫 更新时间:2023-10-29 12:28:25 25 4
gpt4 key购买 nike

我想通过 CSS 而不是在 HTML 中为段落添加文本,因为它可能会随着网站的响应能力而发生变化。

现在我无法让它工作,我想知道是不是CSS有问题?

此外,这是唯一可以做到这一点的方法(使用纯 HTML 和 CSS)还是有另一种方法来定位文本并根据每个分辨率更改它?

HTML:

<p class="title"></p>

CSS:

p.title {
width: auto;
height: auto;
position: relative;
float: left;
clear: none;
margin: 40px 0 0 0;
padding: 0;
display: block;
font-family: 'Fjalla One', sans-serif;
font-weight: 400;
font-size: 36px;
color: #d76e50; color: rgba(215, 92, 52, 0.9);
cursor: default;
content:"TITLE GOES HERE";
}

最佳答案

CSS content 属性只能与 ::before::after 伪元素一起使用。您可以通过创建一个仅在 ::after 上具有样式的子元素来解决此问题,并且还包括依赖于解析的文本的 content 属性媒体查询。

关于html - CSS "content"不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19771329/

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