Horizontal Line
With Variable Dash Length
Horizontal line how to create the horizontal line with dash length as shown in image using CSS. This is what i've tried CSS hr{ border-bottom: 1px dotted grey; } but i am unable g
Solution 1:
Try the below code: Use border
css property.
hr{
border: 1px dashed #ccc;
}
<p> hello </p><hr/>
Post a Comment for "Horizontal Line
With Variable Dash Length"