Applying CSS to Google Visualization Table

后端 未结 4 1597
别那么骄傲
别那么骄傲 2021-01-15 19:52

I have created a table in Google Visualization which uses the following code:


  
      

        
4条回答
  •  臣服心动
    2021-01-15 20:34

    Have you tried !important at the end of your CSS property?

    Example CSS:

    .headerRow {
        color: #000!important;
    }
    

    The !important property will always be applied no matter where that rule appears in the CSS.

提交回复
热议问题