How can we add borders using before after?

Forums CSSHow can we add borders using before after?
Staff asked 3 years ago

Answers (2)

Add Answer
Staff answered 3 years ago
#yourClass:after
{
   content: "";
    width: 40px;
    height: 3px;
    background-color: #529600;
    left: 0;
    position: relative;
    display: block;
    top: 10px;
}

 

Staff answered 3 years ago
#yourClass:before
{
   content: "";
    width: 40px;
    height: 3px;
    background-color: #529600;
    left: 0;
    position: relative;
    display: block;
    top: 10px;
}

 

Subscribe

Select Categories