I am trying to use the pseudo-element ::before
to insert an <hr>
before each <article>
tag, so far I have:
article::before {
content: "\003C br \\ \003E";
}
but this doesn't work. Is there some other way of inserting HTML tags into pseudo-element CSS?