CSS for changing color of last word in h1

前端 未结 10 2443
遇见更好的自我
遇见更好的自我 2020-11-29 09:31

I have a website that I am developing using CSS3 and I have h1 tag for the title:

main title

Now I want t

10条回答
  •  隐瞒了意图╮
    2020-11-29 09:59

    CSS doesn't really interact with text in that manner. it interacts with elements in the DOM tree. Adding a span around that word is the standard way (that I've seen, at least) of differentiating a piece of text. Just use the span tag, the maintainer of the code will thank you for it.

提交回复
热议问题