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:

StaticImage

  import React , { useEffect , useRef } from "react" import { StaticImage } from "gatsby-plugin-image" impor...