-
Notifications
You must be signed in to change notification settings - Fork 1.7k
feat(tabs): add support of Vertical tabs #3033
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
There's no such possibility for now. I'll mark this issue as feature request |
Hi
This In HTML
Sample Output Note I am Using "ngx-bootstrap": "^1.9.3", Hope it helps community. |
Hi, I have found another way to make vertical tabs work with vertical behavior. Add this to your stylesheets: .tab-container {
display: inherit;
} And then wrap your tabset in a row element (should work with any element with a display:flex) <div class="row">
<tabset [vertical]="true" type="pills">
<tab heading="Vertical 1">Vertical content 1</tab>
<tab heading="Vertical 2">Vertical content 2</tab>
</tabset>
</div> If you want the default behavior you can wrap it with a display:block or display:inline element |
Is there any way to configure ngx-bootstrap veritcal tabs in a way that headings are on the left side (class="col-3"), and content is next to it (class="col-9") ?
The text was updated successfully, but these errors were encountered: