Override GWT Styling

后端 未结 12 2243
栀梦
栀梦 2020-12-13 18:53

I had a beautiful pure HTML mockup for a webpage that I am now recreating in GWT. I\'m attempting to use the same css in my GWT app, but that\'s not working well for me. G

12条回答
  •  春和景丽
    2020-12-13 19:56

    I had a similar problem trying to set a background image and setting a transparent background for the body element, I solved it by setting a specific style to the element so I could keep the other GWT styles:

    ...
    
    #elementId {
       background: transparent;
    }
    

    Hope it's useful for your specific problem.

提交回复
热议问题