https://jsfiddle.net/2gf6gq0s/
I use ::after
pseudo-element to insert text in my document:
<div class="foo"></div>
<div>test</div>
<style>
.foo::after { content: "hello johnny"; }
</style>
However, if I press Ctrl+F to find a text, I would not be able to find a word "hello" or word "johnny". Obviously, with the word "test" is all okay.
How it may be fixed?