通过 CSS 在图像悬停处显示蓝色阴影


要显示图像悬停时的阴影,请使用 CSS box-shadow 属性

示例

实时演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         img {
            border: 2px solid orange;
            border-radius: 3px;
            padding: 7px;
         }
         img:hover {
            box-shadow: 0 0 2px 2px blue;
         }
      </style>
   </head>
   <body>
      <img src = "https://tutorialspoint.com/videotutorials/images/coding_ground_home.jpg" alt="Online Compiler" width="300" height="300">
   </body>
</html>

更新于: 2020 年 6 月 24 日

2K+ 浏览量

开启你的 职业生涯

通过完成课程获得认证

开始
广告