问题 I'm creating a round context menu using QFrame. To make round corner, I used Qt style sheet. Here is my CSS this->setStyleSheet("QFrame#ShareContextMenu{background-color:rgb(255,255,255); border-width:1px; border-color :rgb(0,0,0); border-radius:10px; border-style:solid;} QPushButton{background-color:rgba(255,255,255,0);} QPushButton::hover{background-color:rgba(125,125,125,50); border-radius:5px;}"); How can I remove the white background marked with red circles in this picture?. Edit: Here