Responsive React Max Width built with Bootstrap 5. Learn how to make a container or an element max width within its parent.
Check out React Bootstrap Max Width Documentation for detailed instructions & even more examples.
Width utilities are generated from the utility API in _utilities.scss
. Predefined classes support 25%
, 50%
, 75%
, 100%
, and auto
by default. In order to make an element take the entire width of its parent add a .w-100
class to it.
import React from 'react';
export default function App() {
return (
<>
<div className="w-25 p-3" style={{ backgroundColor: "#eee" }}>Width 25%</div>
<div className="w-50 p-3" style={{ backgroundColor: "#eee" }}>Width 50%</div>
<div className="w-75 p-3" style={{ backgroundColor: "#eee" }}>Width 75%</div>
<div className="w-100 p-3" style={{ backgroundColor: "#eee" }}>Width 100%</div>
<div className="w-auto p-3" style={{ backgroundColor: "#eee" }}>Width auto</div>
</>
);
}
You can also use max-width: 100%;
utilities as needed.
import React from 'react';
export default function Image() {
return (
<>
<img src="https://mdbcdn.b-cdn.net/img/new/slides/041.webp" class="mw-100" alt="wild landscape" />
</>
);
}
You can also use utilities to set the width and height relative to the viewport with the vw
(viewport width) values.
import React from 'react';
export default function Viewport() {
return (
<>
<div className="min-vw-100">Min-width 100vw</div>
<div className="min-vh-100">Min-height 100vh</div>
<div className="vw-100">Width 100vw</div>
<div className="vh-100">Height 100vh</div>
</>
);
}
-
Download MDB React - free UI KIT
-
Choose your favourite customized component and click on the image
-
Copy & paste the code into your MDB project
- React Bootstrap Code
- React Bootstrap Gallery
- React Bootstrap Hamburger Menu
- React Bootstrap Jumbotron
- React Bootstrap Maps
- React Bootstrap Mega Menu
- React Bootstrap Media object
- React Bootstrap Multiselect
- React Bootstrap Masonry
- React Bootstrap Contact form
- React Bootstrap Gradients
- React Bootstrap Pagination
- React Bootstrap Panels
- React Bootstrap Social Media icons & buttons
- React Bootstrap Search
- React Bootstrap Table sort
- React Bootstrap Table responsive
- React Bootstrap Table scroll
- React Bootstrap Table search
- React Bootstrap Textarea
- React Bootstrap Sidebar
- React Bootstrap Profiles
- React Bootstrap Nested Dropdown
- React Bootstrap Address Form
- React Scroll Back to Top button
- React Product Cards
- React Avatar
- React Carousel Slider with Thumbnails
- React Chat
- React Comparison table
- React Comments
- React Drawer
- React FAQ component / section
- React Invoice
- React News feed
- React Offcanvas
- React Order details
- React Page transitions
- React Quotes
- React Payment forms
- React Select with custom Input
- React Square Buttons
- React Testimonial Slider
- React Testimonials / Reviews
- React Survey form
- React Timeline
- React To Do List
- React Padding
- React Modal Size
- React Modal Backdrop
- React CSS Text Animations
- React Video
- React Modal Show, Close, Hide & Toggle
- React Card deck
- React Table filter
- React Slider
- React Logo
- React Popup
- React Weather
- React Hero
- React Max Width