Movatterモバイル変換


[0]ホーム

URL:


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

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

text-decoration

Baseline Widely available *

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

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

La propiedad CSStext-decoration se usa para establecer el formato de texto a subrayado (underline) y suprarrayado (overline), tachado (line-through) o parpadeo (blink). El subrayado y el suprarrayado son posicionados bajo el texto, mientras la línea a través de éste se posiciona por encima.

Las decoraciones de texto se dibujan a través de los elementos descendientes. Esto significa que no es posible deshabilitar la decoración en un descendiente si la propiedad se especifica en un elemento ancestro. Por ejemplo, en el código<p>Este texto tiene <em>algunas palabras enfatizadas</em> en él.</p>, la regla de estilosp { text-decoration: underline; } causará que el párrafo entero tenga subrayado. La reglaem { text-decoration: none; } no causará ningún cambio; el párrafo entero seguirá subrayado. Sin embargo, la reglaem { text-decoration: overline; } causará una segunda decoración que aparecerá sobre "algunas palabras enfatizadas".

Nota:El Nivel 3 de Decoraciones de Texto transformó esta propiedad en la forma reducida de las tres propiedades nuevastext-decoration-color,text-decoration-line, ytext-decoration-style. Como en cualquier otra propiedad reducida, esto significa que restaura sus valores a los predeterminados si no son definidos explícitamente en la propiedad.

Valor inicialas each of the properties of the shorthand:
Applies toall elements. It also applies to::first-letter and::first-line.
Heredableno
Valor calculadoas each of the properties of the shorthand:
Animation typeas each of the properties of the shorthand:

Sintaxis

css
/* Valores clave */text-decoration: none; /* Sin decoración */text-decoration: underline red; /* Subrayado rojo */text-decoration: underline wavy red; /* Subrayado rojo ondulado *//* Valores globales */text-decoration: inherit;text-decoration: initial;text-decoration: unset;

Valores

La propiedadtext-decoration es una forma reducida, y puede usar los valores de cada una de las propiedades de la forma larga:text-decoration-line,text-decoration-color, ytext-decoration-style

Sintaxis formal

text-decoration =
<'text-decoration-line'>||
<'text-decoration-thickness'>||
<'text-decoration-style'>||
<'text-decoration-color'>

<text-decoration-line> =
none|
[underline||overline||line-through||blink]|
spelling-error|
grammar-error

<text-decoration-thickness> =
auto|
from-font|
<length-percentage>

<text-decoration-style> =
solid|
double|
dotted|
dashed|
wavy

<text-decoration-color> =
<color>

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

Ejemplos

css
h1.under {  text-decoration: underline;}h1.over {  text-decoration: overline;}p.line {  text-decoration: line-through;}p.blink {  text-decoration: blink;}a.none {  text-decoration: none;}p.underover {  text-decoration: underline overline;}
html
<h1>Underlined Header</h1><p>If you want to strike out text, use line-through.</p><p>  This text might blink for you - if you use Explorer, it will not.</p><h1>and now an overlined header.</h1><p>  This  <a href="textdecoration.html">link will not be underlined</a>, as  most links are by default. Be careful with removing the text decoration on  links since most users depend on the underline to signify a hyperlink.</p><p>This text has both underline and overline.</p>

Especificaciones

Specification
CSS Text Decoration Module Level 4
# text-decoration-property
Scalable Vector Graphics (SVG) 2
# TextDecorationProperties

Compatibilidad con navegadores

Véase también

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp