Last active
July 2, 2017 03:51
-
-
Save myanmarlinks/08a240e5a1bf3ef0c069e0f0574bc662 to your computer and use it in GitHub Desktop.
CSS FlexBox Start
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"> | |
<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