Created
July 2, 2017 07:08
-
-
Save myanmarlinks/a4526322ef067af084179f8ab01051f7 to your computer and use it in GitHub Desktop.
CSS FlexBox Second
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
<!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