Answers for "how to make a nice dotted hr"

CSS
1

How to create a dotted hr

/* you can put this line in your .css Change the width, 
border etc and colour to your liking*/

hr {
  width: 10%;
  border: 10px dotted;
  border-style: none none dotted;
  color: grey
}
Posted by: Guest on January-18-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 "how to make a nice dotted hr"

Browse Popular Code Answers by Language