Search
 
SCRIPT & CODE EXAMPLE
 

CSS

tailwind absolute center

absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2
Comment

center div in tailwind css

<div class="w-32 h-32 flex justify-center items-center bg-yellow-500">
	<div class="w-10 h-10 bg-red-500"></div>
</div>
Comment

tailwind flex align items center

<div class="flex items-center ...">
  <div>1</div>
  <div>2</div>
  <div>3</div>
</div>
Comment

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;
Comment

tailwind center py

<div class="flex items-center ...">
  <div class="py-4">01</div>
  <div class="py-12">02</div>
  <div class="py-8">03</div>
</div>
Comment

tailwind center py

<div class="flex items-center ...">
  <div class="py-4">01</div>
  <div class="py-12">02</div>
  <div class="py-8">03</div>
</div>
Comment

Center content tailwind

<div class="flex items-center justify-center h-screen">
	<img class="object-center" src="{{ asset('assets/images/gifs/loader.gif') }}" alt="">
</div>
Comment

PREVIOUS NEXT
Code Example
Css :: universal css 
Css :: display none but keep space 
Css :: css dynamic grid layout 
Css :: css for internet explorer only 
Css :: gradient border with border radius 
Css :: css background image position vertical center 
Css :: css check if mobile 
Css :: get all tables laravel 
Css :: add background image and color css 
Css :: border dot css 
Css :: how to make font awesome responsive bootstrap 
Css :: removing the unwanted border button css 
Css :: hex code for khaki 
Css :: center nav bar css 
Css :: css table border-collapse 
Css :: multiple css media queries 
Css :: css no bottom ouline 
Css :: How to remove the blueish background on a button when clicked 
Css :: css shaddow 
Css :: change background input css 
Css :: using overflow:hidden and clearing float 
Css :: how to write remark in css 
Css :: how to outline text in css 
Css :: how to print hello world with css 
Css :: center text in div 
Css :: css selector not checked 
Css :: css svg width 100% 
Css :: animation reverse 
Css :: wp wpbakery bulder page alignment 
Css :: Hide scroll bar, but while still being able to scroll 
ADD CONTENT
Topic
Content
Source link
Name
8+2 =