Created
December 5, 2019 22:08
-
-
Save Trodrige/5e34f8704f31b21b91a31970ffc3ade7 to your computer and use it in GitHub Desktop.
Flexbox Tutorial
This file contains hidden or 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>Flexbox Beginner's guide</title> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> | |
<div class="container"> | |
<div class="item item1">Item 1</div> | |
<div class="item item2">Item 2</div> | |
<div class="item item3">Item 3</div> | |
<div class="item item4">Item 4</div> | |
<div class="item item5">Item 5</div> | |
<div class="item item6">Item 6</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment