Coloring links: Difference between revisions
Jump to navigation
Jump to search
[checked revision] | [checked revision] |
BerkmanSysop (talk | contribs) (updated instructions) |
BerkmanSysop (talk | contribs) (updated wording) |
||
Line 14: | Line 14: | ||
<a href="http://cyber.law.harvard.edu/"><span style="color:green;">Berkman</span></a> | <a href="http://cyber.law.harvard.edu/"><span style="color:green;">Berkman</span></a> | ||
Notice that there are | Notice that there are two elements both in front and behind the colored link. | ||
<pre><nowiki> | <pre><nowiki> | ||
<span style="color:green;"> | <span style="color:green;"> | ||
</nowiki><pre> | </nowiki></pre> | ||
and | and | ||
Line 23: | Line 23: | ||
<pre><nowiki> | <pre><nowiki> | ||
</span> | </span> | ||
</nowiki><pre> | </nowiki></pre> | ||
HTML elements that wrap the section to which color needs to be applied. Both parts are necessary as the rendered HTML must be able to tell the browser where the span, and with that the coloring, starts and ends. | These HTML elements that wrap the section to which color needs to be applied. Both parts are necessary as the rendered HTML must be able to tell the browser where the span, and with that the coloring, starts and ends. | ||
==caveats== | ==caveats== |
Revision as of 21:51, 26 January 2013
This wiki supports css style
attributes on links.
The syntax is a little unorthodox but is set using the following:
style attribute
To set the style attribute on a link, enclose the link title within a span with a defined style - in this case specifically, color. e.g.:
[http://cyber.law.harvard.edu/ <span style="color:green;">Berkman</span>]
The above would be converted to the following link:
<a href="http://cyber.law.harvard.edu/">Berkman</a>
Notice that there are two elements both in front and behind the colored link.
<span style="color:green;">
and
</span>
These HTML elements that wrap the section to which color needs to be applied. Both parts are necessary as the rendered HTML must be able to tell the browser where the span, and with that the coloring, starts and ends.
caveats
There are no caveats at the moment.
examples
[http://www.google.com/ This((.link_red))] is a link in red.
- This is a link in red.
[http://www.google.com/ This((.link_green))] is a link in green.
- This is a link in green.
[http://www.google.com/ This((.link_blue))] is a link in blue.
- This is a link in blue.
[http://www.google.com/ This((.link_yellow))] is a link in yellow.
- This is a link in yellow.
[http://cyber.law.harvard.edu/cfl/Main_Page This((.link_green))] is a green link.
- This is a green link.