Skip to content

Instantly share code, notes, and snippets.

@myanmarlinks
Created July 2, 2017 07:08
Show Gist options
  • Save myanmarlinks/a4526322ef067af084179f8ab01051f7 to your computer and use it in GitHub Desktop.
Save myanmarlinks/a4526322ef067af084179f8ab01051f7 to your computer and use it in GitHub Desktop.
CSS FlexBox Second
<!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 box-a">
<p>A</p>
</div>
<div class="box box-b">
<p>B</p>
</div>
<div class="box box-c">
<p>C</p>
</div>
<div class="box box-d">
<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