HTML:
<form>
<input type="text" />
</form>
Styles:
form::after
{
display:block;
content:"Should you see me?";
visibility:visible;
}
form input:focus + ::after
{
display:none;
}
Is it legal due to current specification?
Shall be visible the ::after pseudoelement after focusing the input?
The current behaviour of Cr, IE and FF is correct?