Html: link text styling without css

I need some (technically awful, but still pretty) blackberry desktop projects that have all css support disabled.

I don't seem to know how to get my links to display like this without css:

<style type="text/css">
a.hover { 
  border:0;
} 
a {
  text-decoration: none;
}
</style>

      

Is this possible just using html?

+1


source to share


2 answers


You can only set the color.

<body link="XXX" alink="YYY" vlink="ZZZ"> 

      

XXX is the color used for links, YYY is the color when the mouse hovers over the link, and ZZZ is the color for already visited links. Color can be specified in hexadecimal notation just like in styles



#AABBCC

      

You cannot specify whether links are underlined or not, or whether there is a border or not. This is entirely browser dependent ... unless those devices have any special secret non-standard HTML.

+9


source


tex-decoration:bilnk

; it makes your lyrics blink like a rapper



0


source







All Articles