강의를 듣다가 알게 된 aspect-ratio에 대해 알아보자
aspect-ratio는 요소의 크기를 비율대로 조정할 수 있는 css이다
이미지가 늘어나지 않으면서 비율을 조정하고 싶다면 부모 컨테이너에서 비율을 조정하고
이미지 태그에서 object-fit: cover;
와 같이 사용해주면 된다
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Document</title>
</head>
<body>
<div class="container">
<img
class="img"
src="https://fastly.picsum.photos/id/93/200/300.jpg?hmac=_9xpriBgFwY9RX_KtR53oeWtaQaNroWVr-4a9aJ0g_4"
alt="random"
/>
</div>
</body>
</html>
body {
background-color: #1a1a1a;
}
.container {
width: 200px;
aspect-ratio: 2 / 1;
background-color: gray;
}
.img {
object-fit: cover;
height: 100%;
width: 100%;
}