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

Làm thế nào để tạo các nút mờ dần bằng CSS?

Sau đây là mã để tạo các nút mờ dần bằng CSS -

Ví dụ

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
button {
   background-color: rgb(255, 175, 222);
   border: none;
   color: black;
   padding: 25px;
   text-align: center;
   font-size: 20px;
   margin: 4px 2px;
   transition: 0.3s;
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   font-weight: bolder;
}
button:hover {
   background-color: #4d0036;
   color: white;
}
</style>
</head>
<body>
<h1>Fading Button Example</h1>
<button>Hover Here</button>
<h1>Hover on the above button to see background fade on button</h1>
</body>
</html>

Đầu ra

Đoạn mã trên sẽ tạo ra kết quả sau -

Làm thế nào để tạo các nút mờ dần bằng CSS?

Khi di chuột, nền tối hơn của nút sẽ mờ dần -

Làm thế nào để tạo các nút mờ dần bằng CSS?