鱼遇于池,池涸,相濡以沫,相鞠以湿,不若相忘于海。

while (alive) {
  object state = working & fighting & enjoying & living thanksgiving;
}
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

去除超连接以及图片热区的边框

Posted on 2005-09-08 17:19  alittlefish  阅读(2657)  评论(0)    收藏  举报
文字:
有边框连接
无边框连接

图片热区:
 1<div style="padding: 10px 10px 10px 10px">
 2文字:
 3<br>
 4<href="javascript:void();">有边框连接</a>
 5<br>
 6<href="javascript:void();" onfocus="this.blur();">无边框连接</a>
 7<br>
 8<br>
 9图片热区:
10<br>
11<img src="wss1.jpg" usemap="#Map1" border=0>
12<map name="Map1">
13 <area shape="RECT" coords="55,100,105,125" href="javascript:void();">
14</map>
15<img src="wss2.jpg" usemap="#Map2" border=0>
16<map name="Map2">
17 <area shape="RECT" onfocus="this.blur();" coords="55,100,105,125" href="javascript:void();">
18</map>
19</div>