Which tags or mediawiki markup symbols should I use to make some text of red or any other color?
Asked
Active
Viewed 8,433 times
11
-
see https://www.mediawiki.org/wiki/Help:Formatting#HTML_tags – Trevor Boyd Smith Jul 11 '16 at 17:23
1 Answers
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
-
-
see https://www.mediawiki.org/wiki/Help:Formatting#HTML_tags – Trevor Boyd Smith Jul 11 '16 at 17:23