We have a span text inside a div element with taillwindcss, what's is the best way to align the text vertically with the div ?
<div class="h-64 w-64 flex flex-col align-items justify-center">
   <span>Home</span>
</div>
We have a span text inside a div element with taillwindcss, what's is the best way to align the text vertically with the div ?
<div class="h-64 w-64 flex flex-col align-items justify-center">
   <span>Home</span>
</div>
 
    
     
    
    <link href="https://www.unpkg.com/tailwindcss@1.9.6/dist/tailwind.min.css" rel="stylesheet">
<div class="h-64 w-64 flex flex-col justify-center items-center">
  <span>Home</span>
</div>