Answers for "css circle dotted horizontal rule"

CSS
1

how to make horizontal rule dotted

hr {
    color: grey;
    border-style: dotted none none none;
    border-width: 5px;
    width: 10%;
}
Posted by: Guest on February-25-2021

Browse Popular Code Answers by Language