Hi, i have a problem using QSS on a QWidget.

I would like to display a image above the text of a QPushButton.
Actually my code is :
Qt Code:
  1. // Constructor() {
  2. setText("Push Button Text");
  3.  
  4. QString styleSheet;
  5. styleSheet.append("QPushButton{");
  6. styleSheet.append("background-image: url(images/image.jpg);");
  7. styleSheet.append("background-repeat: no-repeat;");
  8. styleSheet.append("background-position: center;");
  9. styleSheet.append("}");
  10. setStyleSheet(styleSheet);
  11. // }
To copy to clipboard, switch view to plain text mode 

Because it's background-image, it's under the text...
If i change "background-image" to "image", the image does not appear !

how to put the image above the text, centered on the QPushButton please ? ?