border-bottom-style (proprietà CSS) imposta lo stile del bordo inferiore dell’elemento HTML.
Sintassi
[selettore] {
border-bottom-style: dotted (bordo punteggiato) |
dashed (bordo tratteggiato) |
solid (bordo continuo) |
double (doppio bordo) |
groove (bordo 3D scanalato) |
ridge (bordo a 3D increspato) |
inset (bordo a 3D a effetto incavo) |
outset (bordo a 3D a effetto concavo) |
none (nessuno) | hidden (nascosto)
}
| valore | descrizione |
|---|---|
| XXX | XXX |
Esempi
<style>
.border_bottom_style {border-bottom-style:dotted;}
.border_width_e_color {
border-width:5px;
border-color:red;
}
</style>
<p class="border_bottom_style border_width_e_color">Test</p>
Test
Contenuti correlati
- CSS
- HTML
- JavaScript
- jQuery
- PHP
- SQL
- WORDPRESS
0 Comment