Select element based on multiple classes

Source: https://stackoverflow.com/questions/2554839/select-element-based-on-multiple-classes

You mean two classes? "Chain" the selectors (no spaces between them):
.class1.class2 {
    /* style here */
}
This selects all elements with class1 that also have class2.
In your case:
li.left.ui-class-selector {

}
Official documentation : CSS2 class selectors.

Không có nhận xét nào:

Cold Turkey Blocker

 https://superuser.com/questions/1366153/how-to-get-rid-of-cold-turkey-website-blocker-get-around-the-block Very old question, but still wan...