How to use Grid cell Styler widget background-color

0
  .bgColor {          background-color:red; } I tried to apply a class called , but the backgroud-color is not used. What is the cause?
asked
3 answers
2

It’s probably worth using your browser to Inspect Element on the page over the element you added this class. You should be able to see how the CSS is being applied there. You may find another class or style is overriding it.

answered
1

It could be that the background color is overruled by another element's property. You can try to use the important flag for your property:

.bgColor {
         background-color: red !important;
}

answered
0

Can you tell me how to fix it?

hard to understand

answered