Answers for "horizontal dotted line html"

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
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