Sau đây là mã để thêm nút vào hình ảnh bằng CSS -
Ví dụ
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
img{
width: 100%;
}
div {
position: relative;
width: 100%;
max-width: 400px;
}
div img {
width: 100%;
height: auto;
}
div button {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: rgb(64, 21, 133);
color: white;
font-size: 20px;
padding: 24px 36px;
width: 220px;
border: none;
cursor: pointer;
border-radius: 5px;
text-align: center;
font-weight: bolder;
font-family: monospace,sans-serif,serif;
}
div button:hover {
color:yellow;
}
</style>
</head>
<body>
<h1>Button on Image Example</h1>
<div>
<img src="https://i.picsum.photos/id/354/400/400.jpg">
<button class="btn">Button</button>
</div>
</body>
</html> Đầu ra
Đoạn mã trên sẽ tạo ra kết quả sau -
Khi di chuột qua nút, nút sẽ đổi màu như hình -