Skip to content

Instantly share code, notes, and snippets.

@myanmarlinks
Last active July 2, 2017 03:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save myanmarlinks/08a240e5a1bf3ef0c069e0f0574bc662 to your computer and use it in GitHub Desktop.
Save myanmarlinks/08a240e5a1bf3ef0c069e0f0574bc662 to your computer and use it in GitHub Desktop.
CSS FlexBox Start
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS BOX</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="container">
<div class="box">
<p>A</p>
</div>
<div class="box">
<p>B</p>
</div>
<div class="box">
<p>C</p>
</div>
<div class="box">
<p>D</p>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment