Sau đây là mã để tạo các nút khối bằng CSS -
Ví dụ
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.blockBtn {
display: block;
width: 100%;
border: none;
background-color: rgb(19, 0, 105);
color: white;
padding: 14px 28px;
font-size: 36px;
cursor: pointer;
text-align: center;
font-weight: bold;
}
.blockBtn:hover {
background-color: rgb(132, 161, 255);
color: black;
}
</style>
</head>
<body>
<h1 style="text-align: center;"<Block Button Example</h1>
<button class="blockBtn"<Block Button</button>
</body>
</html> Đầu ra
Đoạn mã trên sẽ tạo ra kết quả sau -