Movatterモバイル変換


[0]ホーム

URL:


  1. Tecnología web para desarrolladores
  2. CSS
  3. Referencia CSS
  4. Properties
  5. border-block-start-width

Esta página ha sido traducida del inglés por la comunidad.Aprende más y únete a la comunidad de MDN Web Docs.

View in EnglishAlways switch to English

border-block-start-width

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨enero de 2020⁩.

Experimental:Esta es unatecnología experimental
Comprueba laTabla de compabilidad de navegadores cuidadosamente antes de usarla en producción.

La propiedad deCSSborder-block-start-width define el ancho del borde lógico de bloque inicial de un elemento, que se asigna al estilo de borde físico dependen del modo de escritura, la direccionalidad y la orientación del texto del elemento. Esto corresponde a las propiedadesborder-top-width,border-right-width,border-bottom-width, oborder-left-width dependiendo de los valores definidos porwriting-mode,direction, ytext-orientation.

Pruébalo

border-block-start-width: thick;writing-mode: horizontal-tb;
border-block-start-width: thick;writing-mode: vertical-rl;
border-block-start-width: 4px;writing-mode: horizontal-tb;
border-block-start-width: 4px;writing-mode: vertical-lr;
<section>  <div>    This is a box with a border around it.  </div></section>
#example-element {  background-color: palegreen;  color: #000;  border: 0 solid crimson;  padding: 0.75em;  width: 80%;  height: 100px;  unicode-bidi: bidi-override;}

Sintaxis

css
/* <'border-width'> values */border-block-start-width: 5px;border-block-start-width: thick;

Propiedades relacionadas sonborder-block-end-width,border-inline-start-width, yborder-inline-end-width, que definen los otros anchos del borde del elemento.

Valor inicialmedium
Applies toall elements
Heredableno
Percentageslogical-width of containing block
Valor calculadoabsolute length;0 if the border style isnone orhidden
Animation typeby computed value type

Valores

<'border-width'>

El ancho del borde. Miraborder-width.

Sintaxis formal

border-block-start-width =
<line-width>

<line-width> =
<length [0,∞]>|
thin|
medium|
thick

Ejemplo

Contenido HTML

html
<div>  <p>Example text</p></div>

Contenido CSS

css
div {  background-color: yellow;  width: 120px;  height: 120px;}.exampleText {  writing-mode: vertical-lr;  border: 1px solid blue;  border-block-start-width: 5px;}

Especificaciones

Specification
CSS Logical Properties and Values Level 1
# border-width

Compatibilidad con navegadores

Mira también

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp