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

Thuộc tính object-position trong CSS

Thuộc tính object-position được sử dụng để chỉ định xem chúng ta nên định vị hình ảnh hoặc video như thế nào bên trong hộp của chính nó.

Ví dụ

<!DOCTYPE html>
<html>
<head>
<style>
img.demo {
   width: 200px;
   height: 200px;
   object-fit: none;
   object-position: 10px 20%;
   border: 2px dashed yellow;
}
</style>
</head>
<body>
<h2>Demo Heading</h2>
<img class="demo" src="https://www.tutorialspoint.com/memcached/images/memcached-mini-logo.jpg" alt="Memcached" width="400" height="250">
<h2>Memcached Tutorial</h2>
<img src="https://www.tutorialspoint.com/memcached/images/memcached-mini-logo.jpg" alt="Memcached" width="300" height="250">
</body>
</html>

Đầu ra

Thuộc tính object-position trong CSS