Answers for "placing an element in the center in tailwind"

2

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
1

tailwind center

<div class="flex justify-center ...">
  <div>1</div>
  <div>2</div>
  <div>3</div>
</div>
Posted by: Guest on June-07-2021

Code answers related to "placing an element in the center in tailwind"

Browse Popular Code Answers by Language