I\'m trying to \"automatically\" add a horizontal-rule after each article in my page. Is there a way of doing this using the :after selector? I\'m hoping to be able to style it
Try this ..
yourclass:before { content: ""; border-left: 2px solid green; height: 28px; margin-right: 15px; }