Skip to content

Instantly share code, notes, and snippets.

@Trodrige
Created December 5, 2019 22:08
Show Gist options
  • Save Trodrige/5e34f8704f31b21b91a31970ffc3ade7 to your computer and use it in GitHub Desktop.
Save Trodrige/5e34f8704f31b21b91a31970ffc3ade7 to your computer and use it in GitHub Desktop.
Flexbox Tutorial
<!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