I'm having some thing like this from the Docs in bootstrap-vue
:
Card with tabs:
So how do I manage to design the tabs like this:
My current code:
<b-card no-body>
<b-tabs card>
<b-tab title="Tab 1" active>
Tab Contents 1
</b-tab>
<b-tab title="Tab 2">
Tab Contents 2
</b-tab>
</b-tabs>
</b-card>
You could add the following simple CSS rules and add
full-width
class tob-card
:and everything will be done
check this codesandbox code
You can use
title-item-class="w-50"
to make each tap title occupies 50% width