How to add spaces between table cells using QSS selectors. I\'ve tried the border-spacing selector, the item pseudo-class with the border selector, but it all doesn\'t work as i
With style-sheets, you are either able to separate the individual cells via border-spacing (as in your example), or via padding:
app.setStyleSheet("QTableView::item { border:0px; padding: 150px; }")