html: text decoration of a link without css

2019-08-01 03:07发布

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?

2条回答
The star\"
2楼-- · 2019-08-01 03:46

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.

查看更多
萌系小妹纸
3楼-- · 2019-08-01 04:01

tex-decoration:bilnk; this makes your text blink-blink, like rapper

查看更多
登录 后发表回答