Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make some text red in mediawiki? [closed]

Tags:

mediawiki

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

like image 858
Andrej Kirejeŭ Avatar asked Oct 02 '10 09:10

Andrej Kirejeŭ


1 Answers

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>
like image 61
Guillem Vicens Avatar answered Oct 04 '22 05:10

Guillem Vicens