CSS Dash Border
To set the border line as a dash, use the value dashed:
<div id="elem"></div>
#elem {
border-width: 1px;
border-style: dashed;
border-color: black;
width: 300px;
height: 100px;
}
:
Repeat the example below:
To set the border line as a dash, use the value dashed:
<div id="elem"></div>
#elem {
border-width: 1px;
border-style: dashed;
border-color: black;
width: 300px;
height: 100px;
}
:
Repeat the example below: