使用 CSS 创建悬停按钮


使用 CSS :hover 选择器创建可悬停按钮。你可以尝试运行以下代码来创建可悬停按钮

示例

在线演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         .btn {
            background-color: yellow;
            color: black;
            text-align: center;
            font-size: 15px;
            padding: 20px;
            border-radius: 15px;
            border: 3px dashed blue;
         }
         .btn:hover {
            background-color: orange;
            color: black;
            border: 3px solid blue;
         }
      </style>
   </head>
   <body>
      <h2>Result</h2>
      <p>Click below for result:</p>
      <button class = "btn">Result</button>
   </body>
</html>

更新日期: 2020 年 6 月 24 日

367 次浏览

启动你的 职业生涯

完成课程获得认证

开始
广告