Answers for "tailwind css text align center"

1

horizontal align tailwind

<div class="flex items-center justify-center h-screen">
    
	<div class="bg-indigo-800 text-white font-bold rounded-lg border shadow-lg p-10">
		Centered Content
	</div>
	
  </div>
Posted by: Guest on February-06-2021
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
2

tailwind tect align left

Class				Properties
text-left		text-align: left;
text-center		text-align: center;
text-right		text-align: right;
text-justify	text-align: justify;
Posted by: Guest on February-18-2021
2

tailwind align-items: center;

Class			Properties
items-start		align-items: flex-start;
items-end		align-items: flex-end;
items-center	align-items: center;
items-baseline	align-items: baseline;
items-stretch	align-items: stretch;
Posted by: Guest on February-27-2021

Code answers related to "tailwind css text align center"

Browse Popular Code Answers by Language