如何使用 PyQt 中的样式表将小部件置于最前面?

How to bring widget to front using stylesheets in PyQt?

如何使用 PyQt 样式表将小部件置于最前面?到 bring a widget to the front programmically, you can use QWidget::raise() 其中

Raises the widget to the top of the parent widget's stack. After this call the widget will be visually in front of any overlapping sibling widgets.

如何使用样式表获得相同的效果?在 PyQt 中是否有 CSS 等价于 z-index

例如

QTabBar::tab:bottom {
    color: #F0F0F0;
    border-top: 3px solid #32414B;
    background-color: #32414B;
    z-index: 5;
}

但是我得到这个错误:

Unknown property z-index

不,不可能。

TL;博士:

并非所有 CSS 属性都受 Qt Style Sheet 支持。以下 link 是 Qt Style Sheets

可用的所有属性