11

Which tags or mediawiki markup symbols should I use to make some text of red or any other color?

Andrej Kirejeŭ
  • 5,381
  • 2
  • 26
  • 31

1 Answers1

21

I doubt this belongs to StackOverflow. In my humble opinion it belongs to the web apps StackExchange site (don't remember the name) unless you are trying to do it programmatically.

Anyway, you can do it by using span as in following example:

<span style="color:red">red</span>

You can also set the background as follows:

<span style="background:red">red</span>
Guillem Vicens
  • 3,936
  • 30
  • 44