# What is Tailwind-CSS ?
# Personalization
# Side notes
Tailwind only creates classes - it needs
creating own Colors-padding:
in the index.css we can specifiy a specific look for a specific element
# typography
…
# Spacing
padding
padding; padding-left; padding-right; padding-top; padding-bottom; padding-x axis (left + right); padding-y axis (top + bottom)
margin
width
space between
# flex
flex
main-content : flex-grow
# grid
column (x-axis) row (y-axis)
grid
grid-cols-2
- horizontal allignment (^v)
grid-rows-2
- vertical allignment (⇐>)
gap
col-span-2
- one element takes 2 times the width
row-span-2
- one element takes 2 times the height
col-start-1
col-end-1
grid-flow-row-dense
# Layout
container
mx-auto
- center containerpx-1
- sets some padding on left, right
# position
static relative absolute
# overflow
overflow-hidden
# borders
border
- adds a 1px border all around
# Effects & Shadows
shadow-md
shadow-cyan-500/50
opacity-5
blur-sm
brightness-125
transition
scale-150
- make an image smaller/bigger
# core concepts
# breakpoint prefix
breakpoint prefix - like @media-queries
- for responsive sites
…