0
How can I change the color of the text, which has the tag <marquee>?
ÂżCĂłmo puedo cambiar el color del texto dentro de la etiqueta <marquee>?
3 Answers
+ 3
use css
<style>
marquee {
color: color name;
}
</style>
example:
<style>
marquee {
color: green;
}
</style>
you can also use HEX or RGB color
+ 1
for example,
<font color="red"><marquee>?/ ÂżCĂłmo puedo cambiar el color del texto dentro de la etiqueta <marquee></font>
0
icant