border-block-end-width
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2021.
Experimental: Esta es una tecnología experimental
Comprueba la Tabla de compabilidad de navegadores cuidadosamente antes de usarla en producción.
La propieda de CSS border-block-end-width
define el ancho del borde final lógico de bloque de un elemento, que se asigna al borde físico que depende del modo de escritura, direccionalidad, y orientación del texto del elemento. Esto corresponde a la propiedad border-top-width
, border-right-width
, border-bottom-width
, o border-left-width
property dependiendo de los valores definidos por writing-mode
, direction
, y text-orientation
.
Pruébalo
Sintaxis
/* <'border-width'> values */
border-block-end-width: 5px;
border-block-end-width: thick;
Las propiedades relacionadas son border-block-start-width
, border-inline-width
, y border-inline-end-width
, que define los otros anchos de borde del elemento.
Valor inicial | medium |
---|---|
Applies to | all elements |
Heredable | no |
Percentages | logical-width of containing block |
Valor calculado | absolute length; 0 if the border style is none or hidden |
Animation type | by computed value type |
Valores
<'border-width'>
-
El tamaño del borde. Mira
border-width
.
Sintaxis formal
border-block-end-width =
<line-width>
<line-width> =
<length [0,∞]> |
thin |
medium |
thick
Ejemplo
Contenido HTML
<div>
<p class="exampleText">Example text</p>
</div>
Contenido CSS
div {
background-color: yellow;
width: 120px;
height: 120px;
}
.exampleText {
writing-mode: vertical-lr;
border: 1px solid blue;
border-block-end-width: 5px;
}
Especificaciones
Specification |
---|
CSS Logical Properties and Values Level 1 # border-width |
Compatibilidad con navegadores
BCD tables only load in the browser
Mira también
- Esta propiedad se asigna a una de las propiedades del borde físico:
border-top-width
,border-right-width
,border-bottom-width
, andborder-left-width
writing-mode
,direction
,text-orientation