react bootstrap make col disapear in small screens

Solutions on MaxInterview for react bootstrap make col disapear in small screens by the best coders in the world

showing results for - "react bootstrap make col disapear in small screens"
Gwenaëlle
08 Jan 2019
1<Container>
2  <Row>
3    <Col sm={12} lg={4} className="d-none d-lg-block">
4      {/* your content */}
5    </Col>
6    <Col sm={12} lg={8}>
7      {/* your content */}
8    </Col>
9  </Row>
10</Container>
11