Skip to content

Instantly share code, notes, and snippets.

@inlinestyle
Created November 13, 2016 20:51
Show Gist options
  • Save inlinestyle/47d14a13032fdf74982a5f8e5bf57702 to your computer and use it in GitHub Desktop.
Save inlinestyle/47d14a13032fdf74982a5f8e5bf57702 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=47d14a13032fdf74982a5f8e5bf57702
<!DOCTYPE html>
<html>
<head>
<title>4 Boxes</title>
</head>
<body>
<div id="parent">
<div id="child">
</div>
</div>
</body>
</html>
#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