View Single Post
  #12 (permalink)  
Old 02-26-2004, 06:05 AM
ranjan's Avatar
ranjan ranjan is offline
WebProWorld Pro
 
Join Date: Sep 2003
Location: CA
Posts: 153
ranjan RepRank 0
Default

I did it! With Pure CSS!!

THE CSS
Code:
<style type="text/css">
<!--
a:link {
	color: #333333;
	text-decoration: underline;
}
a:visited {
	color: #333333;
	text-decoration: underline;
}
a:hover {
	color: #FF0000;
	text-decoration: line-through;
}
a:active {
	color: #333333;
	text-decoration: underline;
}
.blktxt {
	color: #333333;
}
-->
</style>
THE HTML
See it in action:
http://ranjan.ws/scripts/csslinethrough.htm
__________________
ranjan | Macromedia Certified Dreamweaver MX Developer
http://www.dreamlettes.net - a dreamweaver resource
http://www.ranjan.ws - got blog?
http://www.total-impact.com - a web design community
Reply With Quote