Answers for "place a single container in center tailwind"

CSS
3

tailwind flex align items center

<div class="flex items-center ...">
  <div>1</div>
  <div>2</div>
  <div>3</div>
</div>
Posted by: Guest on December-17-2020
0

center div tailwind

<div class="flex h-screen">
  <div class="m-auto">
    <h3>title</h3>
    <button>button</button>
  </div>
</div>
Posted by: Guest on November-01-2021

Code answers related to "place a single container in center tailwind"

Browse Popular Code Answers by Language