how to create a dotted hr

Solutions on MaxInterview for how to create a dotted hr by the best coders in the world

showing results for - "how to create a dotted hr"
Mia
21 Apr 2016
1/* you can put this line in your .css Change the width, 
2border etc and colour to your liking*/
3
4hr {
5  width: 10%;
6  border: 10px dotted;
7  border-style: none none dotted;
8  color: grey
9}
10
11