Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用手写笔更改文本字符串中只有一个单词的颜色,即
#copy h1 Our new site will be ready soon..
手写笔代码是
h1 font-weight bold color white
我只想将 h1 短语“我们”中第一个字母的颜色更改为黄色,我怎么能在手写笔中实现这一点,谢谢 :)
css 选择器“首字母”选择器是一个不错的选择。
如果您想根据您的示例更改其他字母或部分文本,请使用具有自己风格的跨度,例如
<h1><span style="color:yellow">O</span>ur <span style="color:blue">new</span> website</h1>
您可以尝试:first-letter选择器:
h1:first-letter color: yellow
这是一个例子。
这可以通过使用伪元素来完成
小提琴