views:

1899

answers:

2

i need to to some (technically awful but still good looking) table designs for blackberries that have all css support disabled.

i don't seem to find out how to get my links to display as follows without css:

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

is it even possible, just using html?

+8  A: 

You can only set the color.

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

XXX being the color used for links, YYY the color when mouse hovers the link and ZZZ the color for already visited links. Color can be given in hex notation just like with stylesheets

#AABBCC

You cannot set whether links are underlined or not, or have a border or not. This is totally up to the browser... unless these devices have some special, secret non-standard HTML.

Mecki
A: 

yoi....

tex-decoration:bilnk;

(this make your text blink-blink, like rapper)