How to make some text red in mediawiki?

Andrej Kirejeŭ picture Andrej Kirejeŭ · Oct 2, 2010 · Viewed 7.4k times · Source

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

Answer

Guillem Vicens picture Guillem Vicens · Oct 2, 2010

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>