Last active
August 27, 2019 22:15
-
-
Save EITANINOMIYA/1b388fa0968c7d1d6d15d56d65d79a0c to your computer and use it in GitHub Desktop.
【レスポンシブ】imgタグをbackground:coverと同様の動きをさせる
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*################################################# | |
# 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