gpt4 book ai didi

css - 内联元素内 CSS 中的目标值

转载 作者:行者123 更新时间:2023-11-28 12:52:42 24 4
gpt4 key购买 nike

我有一个 HTML <span> Day Month </span>

对于 CSS,我想分别针对 Day 和 Month(对它们应用不同的样式)而不更改 HTML

我该怎么做?

最佳答案

是的,这是可能的。你可以按照这个方法。这里 font-word 是不可能的,在 css 中没有选项。但是我们使用 content css 属性

<!DOCTYPE html>
<html>
<head>
<style>
span {
color: orange;
}
span:before
{
color: red;
content: "Day";
position: absolute;
}
</style>
</head>
<body>
<span>Day Month </span>
</body>
</html>

更新:这里是 fiddle Demo

关于css - 内联元素内 CSS 中的目标值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16811678/

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