Movatterモバイル変換


[0]ホーム

URL:


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

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

inset-block

Baseline Widely available *

This feature is well established and works across many devices and browser versions. It’s been available across browsers since abril de 2021.

* Some parts of this feature may have varying levels of support.

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

La propiedad deCSSinset-block define los bloques lógicos de inicio y fin de las compensaciones de un elemento, que se asignan a las compensaciones físicas en función del modo de escritura del elemento, la direccionalidad y la orientación del texto. Corresponde a las propiedadestop ybottom, oright yleft dependiendo de las propiedades en los valores definidos paramodo de escritura,dirección yorientación de texto.

css
/* <length> values */inset-block: 3px 10px;inset-block: 2.4em 3em;inset-block: 10px; /* value applied to start and end *//* <percentage>s of the width or height of the containing block */inset-block: 10% 5%;/* Keyword value */inset-block: auto;/* Global values */inset-block: inherit;inset-block: initial;inset-block: unset;

La abreviación para la otra dimensióninset-inline, que es una abreviación parainset-inline-start, yinset-inline-end.

Valor inicialas each of the properties of the shorthand:
Applies topositioned elements
Heredableno
Percentageslogical-height of containing block
Valor calculadoas each of the properties of the shorthand:
Animation typealength,percentage or calc();

Sintaxis

Valores

La propiedadinset-block toma los mismos valores de la propiedadleft.

Sintaxis formal

inset-block =
<'top'>{1,2}

<top> =
auto|
<length-percentage>|
<anchor()>|
<anchor-size()>

<length-percentage> =
<length>|
<percentage>

<anchor()> =
anchor(<anchor-name>?&&
<anchor-side> ,<length-percentage>?)

<anchor-size()> =
anchor-size([<anchor-name>||<anchor-size>]? ,<length-percentage>?)

<anchor-name> =
<dashed-ident>

<anchor-side> =
inside|
outside|
top|
left|
right|
bottom|
start|
end|
self-start|
self-end|
<percentage>|
center

<anchor-size> =
width|
height|
block|
inline|
self-block|
self-inline

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;  position: relative;  inset-block: 20px 50px;  background-color: #c8c800;}

Especificaciones

Specification
CSS Logical Properties and Values Module Level 1
# propdef-inset-block
CSS Positioned Layout Module Level 3
# propdef-inset-block

Compatibilidad con navegadores

Mira también

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2026 Movatter.jp