Properti outline-style
Properti outline-style mengatur gaya
garis luar - batas yang tidak memakan
ruang.
Sintaks
selector {
outline-style: nilai;
}
Nilai
| Nilai | Keterangan |
|---|---|
solid |
Garis solid. |
dotted |
Garis luar berupa titik-titik. |
dashed |
Garis luar berupa garis putus-putus. |
ridge |
Garis luar berupa garis timbul. |
double |
Garis luar berupa garis ganda.
Untuk melihat efeknya, ketebalan batas harus minimal 3px.
|
groove |
Garis luar cekung. |
inset |
Garis luar tertekan ke dalam. |
outset |
Garis luar menonjol keluar. |
none |
Tidak ada batas. |
Nilai default: none.
Contoh . Nilai solid
<div id="elem"></div>
#elem {
outline-width: 1px;
outline-style: solid;
outline-color: black;
width: 300px;
height: 100px;
}
:
Contoh . Nilai dotted
<div id="elem"></div>
#elem {
outline-width: 1px;
outline-style: dotted;
outline-color: black;
width: 300px;
height: 100px;
}
:
Contoh . Nilai dashed
<div id="elem"></div>
#elem {
outline-width: 1px;
outline-style: dashed;
outline-color: black;
width: 300px;
height: 100px;
}
:
Contoh . Nilai ridge
<div id="elem"></div>
#elem {
outline-width: 3px;
outline-style: ridge;
outline-color: black;
width: 300px;
height: 100px;
}
:
Contoh . Nilai double
<div id="elem"></div>
#elem {
outline-width: 3px;
outline-style: double;
outline-color: black;
width: 300px;
height: 100px;
}
:
Contoh . Nilai groove
<div id="elem"></div>
#elem {
outline-width: 3px;
outline-style: groove;
outline-color: black;
width: 300px;
height: 100px;
}
:
Contoh . Nilai inset
<div id="elem"></div>
#elem {
outline-width: 3px;
outline-style: inset;
outline-color: black;
width: 300px;
height: 100px;
}
:
Contoh . Nilai outset
<div id="elem"></div>
#elem {
outline-width: 3px;
outline-style: outset;
outline-color: black;
width: 300px;
height: 100px;
}
:
Lihat juga
-
properti
outline-color,
yang mengatur warna garis luar -
properti
outline-width,
yang mengatur ketebalan garis luar -
properti
outline,
yang merupakan properti singkatan untuk garis luar -
properti
outline-offset,
yang mengatur pergeseran garis luar