
La propiedad border-bottom-style CSS establece la forma de la fuente del marco inferior de un elemento.
Funciones border-bottom-style css
| Valor inicial | none |
|---|---|
| Aplicado a | Todos los artículos. |
| Heredable | No |
| Móvil | No |
| Valor calculado | Como se especificó. |
/* palabras reservadas */ border-bottom-style: none; border-bottom-style: hidden; border-bottom-style: dotted; border-bottom-style: dashed; border-bottom-style: solid; border-bottom-style: double; border-bottom-style: groove; border-bottom-style: ridge; border-bottom-style: inset; border-bottom-style: outset; /* valores globales */ border-bottom-style: inherit; border-bottom-style: initial; border-bottom-style: unset;
Nota: La especificación no define cómo los neumáticos de diferentes formas se unirán en las esquinas.
Ejemplos y aplicaciones
Este es un ejemplo de una tabla <table> que muestra las diferentes formas de marcos a través de border-bottom-style.
Código HTML:
<table>
<tr>
<td class="b1">none</td>
<td class="b2">hidden</td>
<td class="b3">dotted</td>
<td class="b4">dashed</td>
</tr>
<tr>
<td class="b5">solid</td>
<td class="b6">double</td>
<td class="b7">groove</td>
<td class="b8">ridge</td>
</tr>
<tr>
<td class="b9">inset</td>
<td class="b10">outset</td>
</tr>
</table>Código CSS:
tr, td {
padding: 5px;
}
.b1 {border-bottom-style: none; }
.b2 {border-bottom-style: hidden; }
.b3 {border-bottom-style: dotted; }
.b4 {border-bottom-style: dashed; }
.b5 {border-bottom-style: solid; }
.b6 {border-bottom-style: double; }
.b7 {border-bottom-style: groove; }
.b8 {border-bottom-style: ridge; }
.b9 {border-bottom-style: inset; }
.b10 {border-bottom-style: outset; }Soporte de navegadores
| Característica | Chrome | Firefox | IE | Ópera | Safari |
|---|---|---|---|---|---|
| Soporte básico | 1.0 | 1.0 | 5.5 | 9.2 | 1.0 |
Características generales
<br-style>
La propiedad border-bottom-style acepta una palabra reservada de las palabras reservadas disponibles para la propiedad border-style.
Estructura
border-bottom-style: <br-style>;
dónde:
<br-style> = none | hidden | dotted | dashed | solid | double | groove | ridge | inset | outset
Vea también
- La página de propiedades establecida por la propiedad de acceso directo
border-bottom:border-bottom-widthyborder-bottom-color. - La página de propiedades establecido por la propiedad de acceso directo
border:border-width,border-style, yborder-color. - Configure una imagen para el marco usando la función
border-image. - Esquinas redondeadas y
border-radiusesquinas inferioresborder-bottom-left-radius,border-bottom-right-radius.
- Característica Box Sizing en CSS
- Característica del Margin en CSS
- Diferencias entre SASS y SCSS
- Característica del Padding en CSS
- Característica de Opacity en CSS
- Característica del Overflow en CSS
- Característica del Color en el CSS
- Característica del Background en CSS
- Característica de Border en CSS
- Característica del CSS Bottom
- Característica del CSS Display
- Características padding en CSS
- ¿Qué es el código CSS y en que se utiliza?
- Característica background-attachment en CSS
- Propiedad clear en CSS
- Característica background-blend-mode en CSS
- Característica background-clip en CSS
- Propiedades float en CSS
- Característica background-color en CSS
- Característica background-image en CSS
- Característica background-origin en CSS
- Característica background-repeat en CSS
- Característica background-size en CSS
- Característica background-position en CSS
- Característica box-shadow en CSS
- Característica border-bottom en CSS
- Característica border-bottom-color en CSS
- Característica border-bottom-style en CSS
- Característica border-bottom-width en CSS
- Característica border-color en CSS
- Característica border-image en CSS
- Característica border-image-outset en CSS
- Característica border-image-repeat en CSS
- Característica border-image-slice en CSS
- Característica border-image-source en CSS
- Características border-image-width en CSS
- Características border-left en CSS
- Característica border-left-color en CSS
- Característica border-left-style en CSS
- Característica border-left-width en CSS
- Característica border-right en CSS
- Características border-right-color en CSS








































