outline-width
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since April 2017.
Resumen
La propiedad CSS outline-width
es usada para establecer el grosor del contorno de un elemento. Un contorno es una línea que se dibuja al rededor de los elementos, fuera de los límites del borde, para resaltar al elemento:
Valor inicial | medium |
---|---|
Applies to | all elements |
Heredable | no |
Valor calculado | an absolute length; if the keyword none is specified, the computed value is 0 |
Animation type | a length |
Sintaxis
/* Valores clave */
outline-width: thin;
outline-width: medium;
outline-width: thick;
/* Valores <length> */
outline-width: 1px;
outline-width: 0.1em;
/* Valores globales */
outline-width: inherit;
Valores
thin
-
Depende del Agente Usuario. Generalmente 1px en navegadores de escritorio como Firefox.
medium
-
Depende del Agente Usuario. Generalmente 3px en navegadores de escritorio como Firefox.
thick
-
Depende del Agente Usuario. Generalmente 5px en navegadores de escritorio como Firefox.
<length>
-
Ver valores
<length>
.
Sintaxis formal
outline-width =
<line-width>
<line-width> =
<length [0,∞]> |
thin |
medium |
thick
Ejemplos
Contenido HTML
<span id="thin">thin</span>
<span id="medium">medium</span>
<span id="thick">thick</span>
<span id="twopixels">2px</span>
<span id="oneex">1ex</span>
<span id="twoem">2em</span>
Contenido CSS
span {
outline-style: solid;
display: inline-block;
margin: 20px;
}
#thin {
outline-width: thin;
}
#medium {
outline-width: medium;
}
#thick {
outline-width: thick;
}
#twopixels {
outline-width: 2px;
}
#oneex {
outline-width: 1ex;
}
#twoem {
outline-width: 2em;
}
Especificaciones
Specification |
---|
CSS Basic User Interface Module Level 4 # outline-width |
Compatibilidad con navegadores
BCD tables only load in the browser