Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

개체 맞춤 및 개체 위치를 사용하여 CSS에서 이미지 자르기

<시간/>

CSS 객체 맞춤객체 위치 속성은 이미지를 자르고 요소에 표시되는 방식을 지정하는 데 도움이 됩니다.

CSS object-fit 속성의 구문은 다음과 같습니다 -

Selector {
   object-fit: /*value*/
   object-position:/*value*/
}

예시

다음 예는 CSS object-fit 속성을 보여줍니다.

<!DOCTYPE html>
<html>
<head>
<style>
img {
   object-fit: cover;
}
img:last-of-type {
   object-fit: contain;
}
</style>
</head>
<body>
cover
<img src="https://images.unsplash.com/photo-1611423837981- 2cba00ee7631?crop=entropy&cs=tinysrgb&fit=crop&fm=jpg&h=120&ixlib=rb1.2.1&q=80&w=120" width="200" height="250"/>
<img src="https://images.unsplash.com/photo-1611423837981- 2cba00ee7631?crop=entropy&cs=tinysrgb&fit=crop&fm=jpg&h=120&ixlib=rb1.2.1&q=80&w=120" width="200" height="250"/>
contain
</body>
</html>

출력

이것은 다음 결과를 생성합니다 -

개체 맞춤 및 개체 위치를 사용하여 CSS에서 이미지 자르기

예시

<!DOCTYPE html>
<html>
<style>
div {
   border: 1px solid blue;
   width:100%;
   height:300px;
}
img {
   float:left;
   width:50%;
   height:100%;
   object-fit:cover;
   object-position: 20px -10px;
}
</style>
<body>
<div >
<img src="https://images.unsplash.com/photo-1611800065908-
233b597db552?crop=entropy&cs=tinysrgb&fit=crop&fm=jpg&h=350&ixlib=rb1.2.1&q=80&w=250" />
<img src="https://images.unsplash.com/photo-1612626256634-
991e6e977fc1?crop=entropy&cs=tinysrgb&fit=crop&fm=jpg&h=350&ixlib=rb1.2.1&q=80&w=250"/>
</div>
</body>
</html>

출력

이것은 다음 결과를 생성합니다 -

개체 맞춤 및 개체 위치를 사용하여 CSS에서 이미지 자르기

크기 조정 효과

개체 맞춤 및 개체 위치를 사용하여 CSS에서 이미지 자르기