Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

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);
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #horizontal #line #css #heading
ADD COMMENT
Topic
Name
1+1 =