CSS to select/style first word

后端 未结 11 1741
礼貌的吻别
礼貌的吻别 2020-11-22 13:30

This one has me kind of stumped. I want to make the first word of all the paragraphs in my #content div at 14pt instead of the default for the paragraphs (12pt). Is there a

11条回答
  •  失恋的感觉
    2020-11-22 14:04

    What you are looking for is a pseudo-element that doesn't exist. There is :first-letter and :first-line, but no :first-word.

    You can of course do this with JavaScript. Here's some code I found that does this: http://www.dynamicsitesolutions.com/javascript/first-word-selector/

提交回复
热议问题