Created
September 24, 2017 08:50
-
-
Save dmjcomdem/322d4a93ed39b3d723c216ff797653cb to your computer and use it in GitHub Desktop.
Centering a picture in a block
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
div { | |
width: 400px; | |
height: 400px; | |
margin: 100px auto; | |
border: 1px solid #000; | |
position: relative; | |
} | |
img { | |
position: absolute; | |
top: 0; right: 0; bottom: 0; left: 0; | |
margin: auto; | |
max-width: 100%; | |
max-height: 100%; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment