Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Border of qgroupbox

Tags:

I'm having some trouble setting a border of a groupbox.

my aim is to have something like this:

enter image description here

but so far all I can get is this:

enter image description here

the stylesheet i'm using:

#groupBox {     border: 1px solid gray;     border-radius: 9px; } 
like image 511
SamuelNLP Avatar asked Jan 29 '13 12:01

SamuelNLP


1 Answers

QGroupBox {     border: 1px solid gray;     border-radius: 9px;     margin-top: 0.5em; }  QGroupBox::title {     subcontrol-origin: margin;     left: 10px;     padding: 0 3px 0 3px; } 
like image 181
york.beta Avatar answered Sep 23 '22 20:09

york.beta