i'm creating text with css :after. But I'm not able to select the resulting text (e.g. for copy&paste). is it possible to make it selectable?
<div>foo</div>
div:after{
content: ' 123';
}
i'm creating text with css :after. But I'm not able to select the resulting text (e.g. for copy&paste). is it possible to make it selectable?
<div>foo</div>
div:after{
content: ' 123';
}
<div>foo 123</div>? :)