Answer the question
In order to leave comments, you need to log in
How to set container fluid in BOOTSTRAP 4 react?
How to set container fluid in BOOTSTRAP 4 react?
Answer the question
In order to leave comments, you need to log in
bootstrap:
import React from 'react';
const Example = () => (
<div className="container-fluid">{/* children */}</div>
);
import React from 'react';
import { Container } from 'reactstrap';
const Example = () => (
<Container fluid>{/* children */}</Container>
);
import React from 'react';
import Container from 'react-bootstrap/Container';
const Example = () => (
<Container fluid>{/* children */}</Container>
);
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question