CSS is fundamental to any coding, even backend, because everything touches a webpage eventually!
allows you to easily organize elements in a row or a column, but not both simultaneously It simplifies the process of creating flexible and responsive layouts, particularly when dealing with items in a linear sequence, without having to resort to complex float or positioning properties.
main-axis is the flow we’re interested in, and cross-axis is the one perpedicular to that
main-axis is determined by
flex-direction
(e.g.row
andcolumn
)
not all languages has the same main-axis
can adapt to any size rendering easier and more intuitive
I need to have rudmentary understanding of front-end technologies; everything is connected to the web!