Ejemplo
Cambiar el color de la línea, en un texto subrayado:
document.getElementById("myP").style.textDecorationColor = "red";
Inténtalo tú mismo " Definición y Uso
La propiedad textDecorationColor especifica el color del texto-decoración (underlines, overlines, linethroughs) .
Nota: La propiedad textDecorationColor sólo tendrá un efecto sobre los elementos con un visible text-decoration.
Soporte del navegador
La propiedad textDecorationColor no es compatible con cualquiera de los principales navegadores.
Firefox soporta una alternativa, la propiedad MozTextDecorationColor.
Sintaxis
Devolver la propiedad textDecorationColor:
object .style.textDecorationColor
Establecer la propiedad textDecorationColor:
object .style.textDecorationColor=" Valores de propiedad Valor Descripción color Especifica el color del texto-decoración initial Establece esta propiedad a su valor por defecto. Lea acerca inicial inherit Hereda esta propiedad de su elemento padre. Lea acerca de heredar
Detalles técnicos
Valor por defecto: currentcolor Valor de retorno: Una cadena, que representa la propiedad text-decoration-color de un elemento Versión CSS CSS3
Páginas relacionadas
Referencia CSS: text-decoration-color property
<Estilo de objeto