Container(ui_container)

UiBibz::Ui::Core::Layouts::Container

Grid systems are used for creating page layouts. You can read about the doc : Bootstrap doc

Options

The specific options for this component are:

Examples

Some examples explain how to use the options present in the component.

Container

ui_container class: "test" do
  ...
  content
  ...
end
<div class="test container">
  ...
  content
  ...
</div>

Type

ui_container content, { type: :fluid }, { class: "test-2" }
<div class="test-2 container-fluid">
  content
</div>

Contents