Created
May 28, 2015 18:38
-
-
Save gearmobile/f409eaaebe5960286ac3 to your computer and use it in GitHub Desktop.
Element has fixed width and height
This file contains 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
.parent { | |
position: relative; | |
} | |
.child { | |
width: 300px; | |
height: 100px; | |
padding: 20px; | |
position: absolute; | |
top: 50%; | |
left: 50%; | |
margin: -70px 0 0 -170px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment