Movatterモバイル変換


[0]ホーム

URL:


  1. Tecnología web para desarrolladores
  2. CSS
  3. Referencia CSS
  4. Properties
  5. border-inline-end

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-inline-end

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-inline-end es unapropiedad abreviada para establecer los valores lógicos individuales del borde en línea final en un solo lugar en la hoja de estilos.

Pruébalo

border-inline-end: solid;writing-mode: horizontal-tb;
border-inline-end: dashed red;writing-mode: vertical-rl;
border-inline-end: 1rem solid;writing-mode: horizontal-tb;direction: rtl;
<section>  <div>    This is a box with a border around it.  </div></section>
#example-element {  background-color: #eee;  color: #8b008b;  padding: 0.75em;  width: 80%;  height: 100px;  unicode-bidi: bidi-override;}

Sintaxis

css
border-inline-end: 1px;border-inline-end: 2px dashed;border-inline-end: medium dashed blue;

border-inline-end puede ser usado para establecer los valores de uno o más deborder-inline-end-width,border-inline-end-style, yborder-inline-end-color. El borde físico al que se mapea depende del modo de escritura, la direccionalidad y la orientación del texto del elemento. Esto corresponde a las propiedadesborder-top,border-right,border-bottom, oborder-left dependiendo de los valores definidos porwriting-mode,direction, ytext-orientation.

Propiedades relacionadas sonborder-block-start,border-block-end, andborder-inline-start, que definen los otros bordes del elemento.

Valor inicialas each of the properties of the shorthand:
Applies toall elements
Heredableno
Valor calculadoas each of the properties of the shorthand:
Animation typeas each of the properties of the shorthand:

Valores

Elborder-inline-end es especificado con uno o más de los siguientes valores, en cualquier orden:

<'border-width'>

El ancho del borde. Miraborder-width.

<'border-style'>

La línea de estilo del borde. Miraborder-style.

<'color'>

El color del borde. Miracolor.

Sintaxis formal

border-inline-end =
<line-width>||
<line-style>||
<color>

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

<line-style> =
none|
hidden|
dotted|
dashed|
solid|
double|
groove|
ridge|
inset|
outset

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-rl;  border-inline-end: 5px dashed blue;}

Especificaciones

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

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