图片边框变换CSS Hover状态效果,代码如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>图片边框变换 CSS Hover状态效果</title> <style type="text/css"> <!-- h1 {text-align:center;margin-top:50px;} p#outer { margin:0 auto; width:286px; } #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:#EE9309;} --> </style> </head> <body> <h1>将鼠标移至图片,将看到此效果。</h1> <p id="outer"><a href="/"><img width=284 src="http://www.google.com/intl/zh-CN_ALL/images/logo.gif" alt="www.itjxue.com" /></a> </p> </body> </html>
[ 提示:你可先修改部分代码,再按Ctrl+A 全部选择 ]