Border Berbentuk Garis Putus-putus di CSS
Untuk mengatur garis border berbentuk garis putus-putus
digunakan nilai dashed:
<div id="elem"></div>
#elem {
border-width: 1px;
border-style: dashed;
border-color: black;
width: 300px;
height: 100px;
}
:
Ulangi contoh yang diberikan di bawah ini: