Is there a way to position the Material UI tabs from Material UI tabs below the content area instead of above it? I am currently using them in my project and would like this specific layout.
<md-tab-group>
<md-tab label="Tab 1">
Content
</md-tab>
<md-tab label="Tab 2">
Content
</md-tab>
</md-tab-group>
I attempted adding md-tabs-align="bottom"
on the md-tab-group
, but it didn't have any effect. Can you provide guidance on how to achieve this?
md-tabs-align="bottom"
Additionally, I want the tab content to occupy the entire div space rather than being confined to a small area. How can I make this adjustment?