Is it possible? I want to change the style of some words in a paragraph with the help of css without using any html tag on those specific word. like , etc. Waiting for posi
Not possibble with only CSS, but with for example jQuery you can search some words into a text and change the style for example:
$('p').html(html.replace(/world/gi, '$&'));