Answers for "horizontal line css before and after heading"

CSS
0

horizontal line css before and after heading

h1::before,
h1::after {
    display: inline-block;
    content: "";
    border-top: .3rem solid black;
    width: 4rem;
    margin: 0 1rem;
    transform: translateY(-1rem);
}
Posted by: Guest on March-07-2022

Browse Popular Code Answers by Language