/* it act like flex-wrap: wrap; in flex
we don't need to define row and columns by using auto-fit
in below code items of grid take as much space as it have
but when they have smaller then 80px when window size reduce it items will palce below
*/
grid-template-columns:repeat(auto-fit,minmax(80px,1fr))
grid-template-columns: repeat(3, minmax(50px, 2fr));
/* <inflexible-breadth>, <track-breadth> values */
minmax(200px, 1fr)
minmax(400px, 50%)
minmax(30%, 300px)
minmax(100px, max-content)
minmax(min-content, 400px)
minmax(max-content, auto)
minmax(auto, 300px)
minmax(min-content, auto)
/* <fixed-breadth>, <track-breadth> values */
minmax(200px, 1fr)
minmax(30%, 300px)
minmax(400px, 50%)
minmax(50%, min-content)
minmax(300px, max-content)
minmax(200px, auto)
/* <inflexible-breadth>, <fixed-breadth> values */
minmax(400px, 50%)
minmax(30%, 300px)
minmax(min-content, 200px)
minmax(max-content, 200px)
minmax(auto, 300px)
grid-template-columns: minmax(20px, auto) 1fr 1fr;
Code Example |
---|
Css :: css font face |
Css :: padding shorthand |
Css :: css border properties |
Css :: 3d button |
Css :: transition background gradient |
Css :: a4 pagw size css |
Css :: css not clickable |
Css :: Placeholder font-family |
Css :: center item |
Css :: checkbox border css |
Css :: bootstrap ol |
Css :: scroll x css |
Css :: ionic input line color |
Css :: css opacity example |
Css :: can we use material ui and tailwind css together |
Css :: css attr(data-hover) |
Css :: add more than 2 css jquery |
Css :: why top -10 css? |
Css :: set margin to none inside print |
Css :: how to let flex child take whole width |
Css :: css blur border |
Css :: css grid no stretch |
Css :: background clip text |
Css :: font. to be thinner css |
Css :: text indent css |
Css :: center wrapped flex children |
Css :: css top padding |
Css :: glassmorphism background in css |
Css :: import google fonts into react |
Css :: transition timing function css |