Adding
using the :after selector

后端 未结 5 1223
甜味超标
甜味超标 2021-02-07 02:03

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

5条回答
  •  醉话见心
    2021-02-07 02:54

    Try this ..

    yourclass:before {  
        content: "";
        border-left: 2px solid green;
        height: 28px;
        margin-right: 15px;
    }
    

提交回复
热议问题