|
|  |
|
By default textlinks are underlined by the browser.
If your page is visited by MSIE3 or newer, you can turn off the underlining for an entire page by adding a style-tag to the head-section of the document.
Look at this example:
<html>
<head>
<title>This is my page</title>
<style type="text/css">
<!--
A{text-decoration:none}
-->
</style>
</head>
<body>
Welcome to my world!<br>
<a href="http://www.yahoo.com>This Link To Yahoo has no underline</a>
</body>
</html>
|
Note:
The style-setting will not cause an error if viewed on a browser that doesn't support it. The browser will simply skip the effect - the link will look as an ordinary underlined link - but no errors will occur.
|
|
 |  |
|