border-bottom-color (proprietà CSS) imposta il colore del bordo inferiore dell’elemento HTML.
Sintassi
[selettore] {
border-bottom-color: [colore];
}
| valore | descrizione |
|---|---|
| XXX | XXX |
Esempi
<style>
.border_bottom_color {
border-bottom-color:red;
}
.border_bottom_style_e_width {
border-bottom-style:solid;
border-bottom-width:5px;
}
</style>
<p class="border_bottom_color border_bottom_style_e_width">Test</p>
Test
Contenuti correlati
- CSS
- HTML
- JavaScript
- jQuery
- PHP
- SQL
- WORDPRESS
0 Comment