Matestack Ui Bootstrap
AboutMatestack Ui CoreMatestack Ui VueJsMatestack Ui Bootstrap
2.1
2.1
  • Welcome
  • Getting Started
    • Installation & Update
    • Quick Start [WIP]
  • API
    • Templates
      • Apps
        • Admin App Template
    • Form
      • Checkbox
      • Input
      • Radio
      • Select
      • Submit
      • Switch
    • Components
      • Accordion
      • Alert
      • Badge
      • Breadcrumb
      • Button
      • ButtonGroup
      • Card
      • Carousel
      • Chart
      • Close
      • Collapse
      • Dropdown
      • ListGroup
      • Modal
      • Nav
      • Navbar
      • Pagination
      • Popover
      • Progress
      • Scrollspy
      • Smart collection
      • Spinner
      • Toast
      • Tooltip
    • Layout
      • Container
      • Col
      • Row
  • Integrations
    • Chart.js
    • Flatpickr
    • Devise
Powered by GitBook
On this page
  • bs_col(*args, &block)
  • Examples
  • Example 1: Basic
  • Example 2: Using offset option
  • Example 3: Using the order option
  1. API
  2. Layout

Col

PreviousContainerNextRow

Last updated 3 years ago

The Bootstrap column component, implemented in Ruby.

bs_col(*args, &block)

Returns a bootstrap column containing content specified by a block. Also the column is customizable with the following options.

Optional options

  • sm, md, lg, xl, xxl: Expects an Integer <= 12. This parameter set the size of the column by the given breakpoint

  • default - Expects an Integer <= 12. default: 12 is equal to col-12 in bootstrap

  • order, order_sm, order_md, order_lg, order_xl, order_xxl: Expects an Integer <= 12. Set the order of the column by the given breakpoint

  • offset, offset_sm, offset_md, offset_lg, offset_xl, offset_xxl: Expects an Integer <= 12. Move columns to the right using offset parameter by the given breakpoint

  • align_self - Expects start, center, end. Align vertically within the column

HTML attributes This component accepts all the canonical like id or class.

Examples

Example 1: Basic

bs_row do
  bs_col md: 12, lg: 6, xl: 4 do
    # content here
  end
end

returns

<div class="row">
  <div class="col-md-12 col-lg-6 col-xl-4">
    <!-- Content here -->
  </div>
</div>

Example 2: Using offset option

bs_row do
  bs_col md: 4 do
    plain ".col-md-4"
  end
  bs_col md: 4, offset_md: 4 do
    plain ".col-md-4 .offset-md-4"
  end
end

returns

<div class="row">
  <div class="col-md-4">.col-md-4</div>
  <div class="col-md-4 offset-md-4">.col-md-4 .offset-md-4</div>
</div>

Example 3: Using the order option

bs_row do
  bs_col sm: 12, md: 6, xl: 3 do          
    plain "Column 1"
  end
  bs_col sm: 12, md: 6, xl: 3, order_md: 5 do          
    plain "Column 2"
  end
  bs_col sm: 12, md: 6, xl: 3, order_md: 1 do
    plain "Column 3"
  end
end

returns

<div class="row">
  <div class="col-sm-12 col-md-6 col-xl-4">
    Column 1
  </div>
  <div class="col-sm-12 col-md-6 col-xl-4 order-md-5">
    Column 2
  </div>
  <div class="col-sm-12 col-md-6 col-xl-4 order-md-1">
    Column 3
  </div>
</div>
HTML global attributes