作者cgcat (小绵羊赶集)
看板Web_Design
标题[问题] 帮我看看语法.....谢谢!
时间Wed Dec 13 13:57:36 2006
我想做滑鼠移到图片上自动放大映像的功能
功能是都有出来
可是不知道为什麽图片外面会有蓝色的框线
怎麽消掉呢!!
以下是我写的语法
<title>无标题文件</title>
<style type="text/css">
<!--
#skyimg a img{
filter:alpha(opacity=60);
width:500px;
height:auto
}
#skyimg a:hover img{
filter:alpha(opacity=100);
width:550px;
height:auto
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
</style>
</head>
<body>
<div id="skyimg">
<table width="200" border="0">
<tr>
<td><a href="#"><img
src="file:///C|/Documents%20and%20Settings/asia%20color/桌面/作品/大盒-曲線.jpg"
width="500" height="153" class="skyimg"></a></td>
</tr>
</table>
</div>
</body>
</html>
谢谢高手解答阿!!
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 61.228.26.90
1F:推 Phill:img的属性 border=0 ^^ 12/13 14:04
2F:推 bcse:#skyimg a img{border:0} 12/13 14:14
3F:→ cgcat:谢谢你.......您真内行...... 12/13 14:06