Pregunta

Below is small code snap. Though I have given color there it does not show. Underline and position is ok.

h5 {
  margin-left: 36%;
  color:#C0C0C0;
  text-decoration:underline;
}
¿Fue útil?

Solución

If you use the web inspector tools in Chrome you will most likely see a more specific style that overrides your style.

For example:

body > h2 {
  color: green;
}

h2 {
  color: red;
}

A JSBin to demonstrate

And a Chrome picture to demonstrate what to look for

Is how Chrome Tools would show it.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top