QTabBar has a 1px border that separates tabs from their contents.
QTabWidget::pane { border:1px solid #C4C4C3; }
I want the border to disappear under the selected tab, as was done in all browsers and most applications using tabs.
However, the installation style for the QTabBar :: tab does not help:
QTabBar::tab:selected { border-bottom-color:white; }

So how can I achieve this?
source
share