Computer >> Máy Tính >  >> Lập trình >> CSS

Tạo các nút có thể di chuyển bằng CSS

Sử dụng bộ chọn CSS:hover để tạo các nút có thể di chuyển. Bạn có thể thử chạy mã sau để tạo các nút có thể lưu trữ:

Ví dụ

<!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>