왼쪽 및 오른쪽에서 이미지를 자르고 가운데에 배치해야하는 웹 사이트에서 작업 중입니다. 이 코드와, 이것에 대한 해결책을 발견 : http://codepen.io/anon/pen/dXMrWjSafari에서 작동하도록 유연한 가로 크기 조정 이미지 가져 오기
<div class='container'>
<img src='https://source.unsplash.com/category/nature/800x1000/daily'>
</div>
-
body {
margin: 0; padding: 0;
}
.container {
width: 40%;
height: 100vh;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}
img {
height: 100%;
}
를 만은 사파리에서 작동하지 않습니다, 때문에 "VH"단위 어쩌면 가정이다. 누구든지이 문제를 해결하는 방법을 알고 있습니까?
'vh'의 문제가되지 않습니다 : [브라우저 지원 (https://developer.mozilla.org/en-US/docs/Web/CSS/length#Browser_compatibility) – Randy