图片边框变换CSSHover状态效果一例_DIV+CSS实例
教程Tag:暂无Tag,欢迎添加,赚取U币!
我们可能会经常用到此效果,在传统的做法中,这一效果的实现是比较困难或繁琐的,现在通过CSS实现鼠标移至图片,边框发生变换的效果,是非常轻易的。我们看下面的代码。
CSS代码:
示例代码 [www.mb5u.com]
p#outer {
margin:0 auto;
width:202px;
}
#outer a {
margin:0px;
display:block;
position: relative;
border:1px solid #069;
}
#outer a:hover {border:1px dashed #c00;}
#outer img {display:block;border:none;background:#069;}
margin:0 auto;
width:202px;
}
#outer a {
margin:0px;
display:block;
position: relative;
border:1px solid #069;
}
#outer a:hover {border:1px dashed #c00;}
#outer img {display:block;border:none;background:#069;}
XHTML代码:
示例代码 [www.mb5u.com]
<p id="outer"><a href="#">
<img src="http://p1.mb5u.com/divcss/logo3.gif" alt="www.mb5u.com" width="200" height="90" /></a>
</p>
<img src="http://p1.mb5u.com/divcss/logo3.gif" alt="www.mb5u.com" width="200" height="90" /></a>
</p>
查看运行效果:
代码调试框 [www.mb5u.com]
相关DIV+CSS实例:
- 相关链接:
- 教程说明:
DIV+CSS实例-图片边框变换CSSHover状态效果一例。