Answers for "hoew to make a dotted horizontal line in css?"

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
2

how to make a dotted hr in css

/* hr {
  border:none;
  border-top:1px dotted #f00; 
  color:#fff;
  background-color:#fff;
  height:1px;
  width:50%;
} */
Posted by: Guest on May-25-2020

Code answers related to "hoew to make a dotted horizontal line in css?"

Browse Popular Code Answers by Language