How to use before and after CSS
Answers (1)
Add AnswerFor before
#yourClass:before { content: ""; width: 40px; height: 3px; background-color: #529600; left: 0; position: relative; display: block; top: 10px; }
For After:
#yourClass:after { content: ""; width: 40px; height: 3px; background-color: #529600; left: 0; position: relative; display: block; top: 10px; }