CSS Selector for widget Class

I’ve a widget given a class shown below:

widget.setProperty(“cssClass”, “welcome”)

To select and style this widget from my css file (style.css) failed to work. Here’s the selector I tried:

QWidget[cssClass="welcome] {
//styles go here

}

What I’m I doing wrong here? Is the selector correct?