Skip to content

Instantly share code, notes, and snippets.

@EITANINOMIYA
Last active August 27, 2019 22:15
Show Gist options
  • Save EITANINOMIYA/1b388fa0968c7d1d6d15d56d65d79a0c to your computer and use it in GitHub Desktop.
Save EITANINOMIYA/1b388fa0968c7d1d6d15d56d65d79a0c to your computer and use it in GitHub Desktop.
【レスポンシブ】imgタグをbackground:coverと同様の動きをさせる
/*#################################################
# imgタグをレスポンシブ
#################################################*/
<style>
.parent {
height:50vh; // 高さの指定は必要
position:relative;
overflow:hidden;
}
.parent img {
width: auto;
height: auto;
min-width: 100%;
min-height: 100%;
max-width: inherit;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
</style>
<div class="parent">
<img src="xxxxx.jpg">
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment