SitePoint Sponsor |
|
User Tag List
Results 1 to 6 of 6
Thread: Link underline.
-
Jan 7, 2001, 14:13 #1
- Join Date
- Dec 2000
- Location
- Ohio
- Posts
- 150
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
How do you get rid of the link underline without CSS. I'm try to build my page to look good in Netscape and forgot
.
-
Jan 7, 2001, 14:16 #2
- Join Date
- Jul 1999
- Location
- Chicago
- Posts
- 2,629
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
You can't get rid of it without CSS. But remember, Netscape has supported CSS since before IE picked it up. Your CSS pages will work in both browsers almost exactly the same.
-
Jan 7, 2001, 14:18 #3
- Join Date
- Dec 2000
- Location
- BOSTON MA
- Posts
- 335
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
i don't know if there is a way to do it w/out css, but this is what i use
Code:<style> <!-- a{text-decoration:none} --> </style>
. . . chris
-
Jan 7, 2001, 16:14 #4
- Join Date
- Mar 2000
- Location
- Muskegon, MI
- Posts
- 2,328
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
Originally posted by qslack
You can't get rid of it without CSS. But remember, Netscape has supported CSS since before IE picked it up. Your CSS pages will work in both browsers almost exactly the same.
-
Jan 7, 2001, 17:13 #5
- Join Date
- Dec 2000
- Location
- Idaho, USA
- Posts
- 452
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
<style type="text/css">
a:link { text-decoration: none}
a:visited { text-decoration: none}
a:hover { text-decoration: none}
a:active { text-decoration: none}
</style>
try this.. it will get rid of all links. in NS and IE
Blamestorming: Sitting around in a group discussing why a deadline was missed or a project failed and who was responsible.
Exbabylon- Professional Internet Services
-
Jan 7, 2001, 23:19 #6
add:
style="text-decoration:none"
to the links you dont want to have underlines
Bookmarks