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

Làm thế nào để tạo một hình ảnh dính bằng CSS?

Sau đây là mã để tạo một hình ảnh dính bằng CSS -

Ví dụ

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
img {
   position: sticky;
   top: 0;
   width: 300px;
   height: 300px;
}
</style>
</head>
<body>
<h1>Some header text</h1>
<img src="https://i.picsum.photos/id/721/400/400.jpg">
<h1>Some header text</h1>
<h1>Some header text</h1>
<h1>Some header text</h1>
<p style="font-size: 40px;">Lorem ipsum dolor sit amet consectetur adipisicing elit. Fugiat odio ratione officia quod qui blanditiis animi! Repudiandae culpa recusandae dolor id soluta porro commodi quidem, incidunt voluptatum vitae similique nesciunt obcaecati odit enim repellat doloribus. Explicabo quisquam in beatae earum?</p>
</body>
</html>

Đầu ra

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

Làm thế nào để tạo một hình ảnh dính bằng CSS?

Khi cuộn xuống một chút, hình ảnh sẽ ở đúng vị trí của nó như được hiển thị trong đầu ra bên dưới -

Làm thế nào để tạo một hình ảnh dính bằng CSS?