Css
Css
of the below 3:
1) content-size
2) given width
3) given flex-basis(similar to width ,if direction is
coloum the it starts applying on height so width will
be taken from either width or content-size)
---------
order:0 (konsa sa flex-element konse position par hai
sabka 0 hoga initially , agar apan 0 se zyda denge
to vo piche ho jaega)
shorthand:
flex: flex-basis flex-grow flex-shrink;
// Projects
to give space between the lines=> line-height:__ (avoid giving in px , just give
the numbers and
it will set it according to the font-size)
----------------------------------
Grid :
display:grid;
grid-template-coloumns:100px 100px (this means
2 coloumns of 100px each) or
grid-template-coloumns:repeat(3,100px)
// read it like " repeat 3 times 100px (for
remembering)
// or
grid-template-column:repeat(5,minmax(20px,80px))