Tabs

Documentation and examples for how to use Bootstrap’s included navigation components.

Default

Use @Html.LLG().Tab(Action[TabBuilder] action) method to create tab

Content one
Content two
Content three
@(Html.LLG().Tab(tab => {
    tab.Add().Title("Tab One").Content("Content one").Active();
    tab.Add().Title("Tab Two").Content("Content two");
    tab.Add().Title("Disabled").Content("Content three").Disabled();
})) 

Horizontal Alignment

use .HorizontalAlignment(TabHorizontalAlignment horizontalAlignment) method to set horizontal alignment.

Content one
Content two
Content three
@(Html.LLG().Tab(tab => {
    tab.Add().Title("Tab One").Content("Content one").Active();
    tab.Add().Title("Tab Two").Content("Content two");
    tab.Add().Title("Disabled").Content("Content three").Disabled();
}).HorizontalAlignment(TabHorizontalAlignment.Center)) 

Pills Nav

use .PillsNav() method to set pills nav.

Content one
Content two
Content three
@(Html.LLG().Tab(tab => {
    tab.Add().Title("Tab One").Content("Content one").Active();
    tab.Add().Title("Tab Two").Content("Content two");
    tab.Add().Title("Disabled").Content("Content three").Disabled();
}).PillsNav())

Methods

Alerts are available for any length of text, as well as an optional dismiss button

Method Description

.Method(bool value)

Comming soon.