I have got an element with ::after pseudo-element:
#someId::after {
content: 'B';
}
<span id="someId">
A
</span>
And I can't select secound letter of this span
("B"). Can I do something with this span
so that I can select both of letters? (secound letter must be in ::after)
Thanks for help.