简体   繁体   中英

In blueprintjs tabs component, is there any way to display the tabs on the bottom of the tab panel

I am using the tabs component of Version 4 of Blueprintjs, and would like to display the tabs on the bottom of the panel as is typically done in a spreadsheet. There is a setting for moving the tabs to the left side, but I don't see a way to put them on the bottom.

Is this possible?

You can try to add custom styles for .bp4-tabs like:

.bp4-tabs {
  display: flex;
  flex-direction: column-reverse;
}

在此处输入图像描述

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM