I require a container that spans 100% of the available width until it reaches a specific breakpoint (max-width). Upon exploring the official documentation, I came across the responsive fluid container, which appeared to be a suitable choice.
Responsive containers are a new feature in Bootstrap v4.4. They enable you to define a container that is 100% wide (fluid) until a certain breakpoint is reached, at which point a max-width is applied.
Breakpoints table from the official documentation indicates that the md breakpoint is capped at 720px. However, in practice, the behavior is different. During my testing, I discovered that the max-width of the container-md is set to 960px if the viewport is greater than 992px.
screenshot showing the active css rule on the container-md
<b-container fluid="md">
Codepen example
Am I misunderstanding the documentation? Are there any components available that offer the functionality described above?