 Software Tutorials |
|
 Website Templates Types |
|
|
 Website Templates Categories |
|
|
 Partners |
 |
 Featured Free Templates |
|
|
|
:: Free Website Templates
Do You Like Our Website? Share With Others!
     
Page: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25 Welcome To WebDesignTutorials.net HTML and CSS Tutorials Area - Remove Underlines from Links
HTML and CSS Tutorial Remove Underlines from Links
<style type="text/css">
<!--
A:link {text-decoration: none}
-->
</style> |
Put
the above script between the <head> </head> tags in your
page. It will remove all the underlines from your links in that
particular page. To remove all underlines from your links throughout
your website, better place it in your header file.
In addition to none, any of the following
four constants can be put:
A:link {text-decoration: blink} <!--
Text blinks -->
A:link {text-decoration: line-through} <!-- Each
line of text has a line through the middle.
-->
A:link {text-decoration: overline} <!-- Each line
of text has a line above it.
-->
A:link {text-decoration: underline}<!-- Each
line of text is underlined.
-->
|
 Example. |
Usually link, visited, active and hover
are alltogether defined in one script as below:
<style type="text/css">
<!--
A:link {text-decoration: none} <!-- Underlines
are removed from links -->
A:visited {color: red } <!-- Visited link will
become red -->
A:active {color: #CCCCCC } <!-- Active link will
be light grey -->
A:hover {color: yellow } <!-- When you point on
links it will turn to yellow -->
-->
</style> |
Change the colors that suits your website layout.
|
 Advertisements |
|
| Graphic Software, Flash Templates, Free Stock Photos, Web Templates, Web Design, Corporate Web Design, Royalty Free stock Photo, Affordable Website Design, Submit site, Add Url, Stock Photos, Survey Software, Anti Virus Software, E mail software, Computer Software |
|