Issue
How can I draw a dotted line with CSS?
Solution
For example:
hr {
border: none;
border-top: 1px dotted #f00;
color: #fff;
background-color: #fff;
height: 1px;
width: 50%;
}
before
<hr>
after
See also Styling <hr>
with CSS.
Answered By - Sinan Ünür
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.