Fluid Container

Use <Container fluid /> for width: 100% across all viewport and device sizes.

Example: Below is the code example of the Fluid Container:

Javascript




import Container from "react-bootstrap/Container";
import Row from "react-bootstrap/Row";
import Col from "react-bootstrap/Col";
 
function ExampleContainer() {
    return (
        <Container fluid>
            <Row>
                <Col className="bg-secondary">A fluid container</Col>
            </Row>
        </Container>
    );
}
 
export default ExampleContainer;


Output:

React Bootstrap Grid

React Bootstrap Grid is like the maestro of web page layouts in React Bootstrap. It’s your go-to buddy for crafting designs that look good and adapt seamlessly across devices. From straightforward single-column setups to intricate multi-column arrangements, this tool’s got the flexibility and power to make it happen.

There are two main approaches to implement React Bootstrap Grid:

Table of Content

  • Using Grid component
  • Using the Row and Col components

Similar Reads

Using Grid component:

The Grid component is the main component for creating a grid layout....

Using the Row and Col components:

The Row and Col components are used to create rows and columns within the grid. The Row component defines a new row in the grid, and the Col component defines a column within that row....

Fluid Container:

Use for width: 100% across all viewport and device sizes....

Auto-layout columns:

...

Setting one column width:

If column widths are not explicitly defined, the Col component will display columns of equal width....

Variable width content:

...

Responsive grids:

Flexbox grid columns with auto-layout enable you to define the width of a single column, leading to automatic resizing of adjacent columns. This can be achieved using predefined grid classes, grid mixins, or inline widths. Importantly, the width of the center column influences the resizing of the surrounding columns....

Setting column widths in Row:

...

Contact Us