首页
高清电影
无损音乐
游戏攻略
电脑教程
破解资源
站长资源
软件下载
当前位置:
首页
>>
网页制作
鼠标指向网页图片时图片周围显示虚线框
编辑:jimmy
日期: 2024/11/6 浏览:1 次
图片边框变换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=gb2312" /> <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="/UploadFiles/2021-03-30/logo.gif">
提示:您可以先修改部分代码再运行