Containers
Twitter bootstrap Documentation
Default container
Twitter bootstrap Documentation
- Result
- Source
<?php
echo $this->container('');
Responsive containers
Twitter bootstrap Documentation
- Result
- Source
<?php
echo $this->container('100% wide until small breakpoint', 'sm');
echo $this->container('100% wide until medium breakpoint', 'md');
echo $this->container('100% wide until large breakpoint', 'lg');
echo $this->container('100% wide until extra large breakpoint', 'xl');
echo $this->container('100% wide until extra extra large breakpoint', 'xxl');
Fluid containers
Twitter bootstrap Documentation
- Result
- Source
<?php
echo $this->container('...', 'fluid');