What is the meaning of xs, md, lg in CSS Flexbox system?
Let us assume that our screen is divided into 12 columns. The xs part takes up when screen is extra small, Similarly small, medium and large classes as well, based on their respective screen size definition in CSS. The example you provided: <Row> <Col xs={12} sm={3} md={2} lg={1} /> <Col xs={6} sm={6} md={8} lg={10} /> … Read more