<!DOCTYPE html>
<html>
<head>
<title>Thuộc tính background-position-x canh giữa, gần full hình trong CSS</title>
<style>
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
.hero-image {
background-image: url("https://webmoi.vn/thumuc/ceo-bui-tan-luc.jpg");
background-color: #cccccc;
height: 500px;
background-repeat: no-repeat;
background-size: cover; /* Thay đổi kích thước hình ảnh nền để bao phủ toàn bộ vùng chứa */
position: relative;
}
.hero-text {
text-align: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
}
</style>
</head>
<body>
<h1>Thuộc tính background-position-x canh giữa, gần full hình trong CSS</h1>
<p>Căn giữa hình ảnh theo chiều ngang:</p>
<div class="hero-image" style="background-position-x: center;">
<div class="hero-text">
<h1 style="font-size:50px">BÙI TẤN LỰC</h1>
<h3>Người Sáng lập Web Mới</h3>
<button>Xem Ngay</button>
</div>
</div>
<p><b>Hình gốc:</b></p>
<img src="https://webmoi.vn/thumuc/ceo-bui-tan-luc.jpg" style="width:100%; height:auto">
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>Thuộc tính background-position-x canh giữa, gần full hình trong CSS</title>
<style>
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
.hero-image {
background-image: url("https://webmoi.vn/thumuc/ceo-bui-tan-luc.jpg");
background-color: #cccccc;
height: 500px;
background-repeat: no-repeat;
background-size: cover; /* Thay đổi kích thước hình ảnh nền để bao phủ toàn bộ vùng chứa */
position: relative;
}
.hero-text {
text-align: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
}
</style>
</head>
<body>
<h1>Thuộc tính background-position-x canh giữa, gần full hình trong CSS</h1>
<p>Căn giữa hình ảnh theo chiều ngang:</p>
<div class="hero-image" style="background-position-x: center;">
<div class="hero-text">
<h1 style="font-size:50px">BÙI TẤN LỰC</h1>
<h3>Người Sáng lập Web Mới</h3>
<button>Xem Ngay</button>
</div>
</div>
<p><b>Hình gốc:</b></p>
<img src="https://webmoi.vn/thumuc/ceo-bui-tan-luc.jpg" style="width:100%; height:auto">
</body>
</html>