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

Làm thế nào để tạo kiểu cho các nút phác thảo với CSS?


Sau đây là mã để tạo kiểu cho các nút phác thảo bằng CSS -

Ví dụ

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
button {
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   border: none;
   color: white;
   font-weight: bolder;
   padding: 20px;
   font-size: 20px;
   cursor: pointer;
   border-radius: 6px;
   width: 140px;
}
.Success {
   border:2px solid #4caf50;
   color:#4caf50
}
.Success:hover {
   background-color: #46a049;
   color:white;
}
.Info {
   border:2px solid #2196f3;
   color:#2196f3;
}
.Info:hover {
   background: #0b7dda;
   color:white;
}
.Warning {
   border:2px solid #ff9800;
   color:#ff9800;
}
.Warning:hover {
   background: #e68a00;
   color:white;
}
.Danger {
   border:2px solid #f44336;
   color:#f44336;
}
.Danger:hover {
   background: #da190b;
   color:white;
}
.Default {
   border:2px solid #e7e7e7;
   color: black;
}
.Default:hover {
   background: #ddd;
}
</style>
</head>
<body>
<h1>Alert Buttons Example</h1>
<button class="Success">Success</button>
<button class="Info">Info</button>
<button class="Warning">Warning</button>
<button class="Danger">Danger</button>
<button class="Default">Default</button>
</body>
</html>

Đầu ra

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

Làm thế nào để tạo kiểu cho các nút phác thảo với CSS?

Khi di chuột qua các nút, màu nền của nút sẽ giống như đường viền như hình -

Làm thế nào để tạo kiểu cho các nút phác thảo với CSS?