Created
November 13, 2016 20:52
-
-
Save inlinestyle/f2e3d3e0befb456089cf204728876f78 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=f2e3d3e0befb456089cf204728876f78
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Centering with Flexbox</title> | |
</head> | |
<body> | |
<div id="parent"> | |
<div id="child"> | |
</div> | |
</div> | |
</body> | |
</html> |
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
#parent { | |
display: flex; | |
justify-content: center; | |
} | |
#child { | |
height: 100px; | |
width: 50px; | |
background-color: hotpink; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment