Answers for "which tailwind class will you use to align text in the middle of the web page?"

11

tailwind center text

<!--Use the text-center class-->
<div class="text-center">
	<p>Centered Text</p>
</div>
Posted by: Guest on January-03-2022
0

tailwind center

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

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 "which tailwind class will you use to align text in the middle of the web page?"

Browse Popular Code Answers by Language