html
<div class="diamond">
<img src="https://placeimg.com/300/300/any" >
</div>
css
.diamond {
width: 300px;
height: 300px;
transform: rotate(45deg);
overflow: hidden;
}
.diamond > img {
max-width: 100%;
min-width: 100%;
transform: rotate(-45deg) scale(1.5);
position: relative;
}
max-width
,min-width
를 100%로 주어 이미지 전체 꽉 채우기relative
로 하고 중심으로 맞추기