dotted hr line css code example
Example 1: How to create a dotted hr
hr {
width: 10%;
border: 10px dotted;
border-style: none none dotted;
color: grey
}
Example 2: dashed lin in css
hr {
border:none;
border-top:1px dashed #f00;
color:#fff;
background-color:#fff;
height:1px;
width:50%;
}
Example 3: custom hr in css
<hr class="style-two">
hr.style-two {
border: 0;
height: 0;
border-top: 1px solid rgba(0, 0, 0, 0.1);
border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
Example 4: how to make a dotted hr in css