1
I am trying to modify a color in a text, marked by the tag "U" with the color already defined in html.
is like this in html:
<u> <font color="#0000c0">somente no seu e-commerce</font> </u>
I tried it this way in CSS:
u{ color:rgb(20,20,20) !important; }
But it does not accept the color, I believe that because it is defined in the source code.
The important detail, I do not have access to modify the HTML, because it is generated by web software. Every layout modification has to be done by CSS only.
Excellent! It worked. Thank you
– Harry Carvalho
Arrange. Harry Carvalho
– Maycon Ap