Use multi CSS in one GWT project

2009-12-14 Thread Šobis
Hello, I have a question about using multi CSS in on GWT project. I have different clients (different resolution) and I would like to set one CSS file to one resolution and another to different one. Is there any way to do that. For example, for resolution 1280x800 I would like client to use

Re: Use multi CSS in one GWT project

2009-12-14 Thread Nicanor Cristian
You could determine what css file to use by checking window's width and height. For example: You have a css file for every resolution you want to manage. In those files you declare the same css rules, with the same base names + some unique identifier (eg: .topMenu800x600 or topMenu1024x768).

Re: Use multi CSS in one GWT project

2009-12-14 Thread Thomas Broyer
On Dec 14, 10:19 am, Šobis matej.poklu...@gmail.com wrote: Hello, I have a question about using multi CSS in on GWT project. I have different clients (different resolution) and I would like to set one CSS file to one resolution and another to different one. Is there any way to do that.