Container
The Bootstrap container component, implemented in Ruby.
bs_container(*args, &block)
bs_container(*args, &block)Returns a bootstrap container containing content specified by a block. Also the container is customizable with the following options.
Optional options
:size- Expects a breakpoints:xs, :sm, :md, :lg, :xl, :xxl
HTML attributes This component accepts all the canonical HTML global attributes like id or class.
Examples
Example 1: Basic
bs_container size: :fluid do
  # content here
endreturns
<div class="container-fluid">
  <!-- Content here -->
</div>Last updated