scrimba
Tailwind
Flexbox
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

AboutCommentsNotes
Flexbox
Expand for more info
index.html
run
preview
console
<html>
<head>
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
</head>
<body>
<!-- Example 1 -->
<div class="">
<div class="bg-yellow-600 w-16 h-16">1</div>
<div class="bg-teal-700 w-16 h-16">2</div>
<div class="bg-red-700 w-16 h-16">3</div>
</div>

<!-- Example 2 -->
<!-- <div class="flex">
<div class="text-2xl">&bull;</div>
<p class="text-5xl ">Hello there.</p>
</div> -->
</body>
</html>
Console
/index.html
-11:50