如何在 QTextBrowser 中使用 css 设置底部边框?

How to set bottom border using css in QTextBrowser?

假设我有一个带有以下小部件的 QT window(使用 Pyside2,如 PyQT5):

import sys

from PySide2.QtWidgets import QApplication, QMainWindow, QTextBrowser

app = QApplication(sys.argv)

main_window = QMainWindow()
html_string = """
<style>
td { border-bottom: 1px solid #000000; color: blue }
</style>
<table>
  <tr>
    <td>1</td>
    <td>2</td>
  </tr>
  <tr>
    <td>3</td>
    <td>4</td>
  </tr>
</table>
"""
text_browser = QTextBrowser()
text_browser.setHtml(html_string)
text_browser.setReadOnly(True)

main_window.setCentralWidget(text_browser)

main_window.show()

exit_code = app.exec_()
sys.exit(exit_code)

我希望小部件显示带有底边框的 table。像这样:

(图片:table 有底边框)。

但我明白了:

(图片:table无边框).

documentation 建议使用 css 的边框样式在 table 单元格上受支持。

有没有人知道这是否可以实现,如果可以,如何实现?

回答我自己的问题:

我将 PySide2-5.13.0 与 shiboken2-5.13.0 一起使用。将它们都更新到 5.14.0 后,它现在可以正常工作了。