On Dec 14, 10:19 am, Šobis <[email protected]> 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.
You can do it in your CSS file itself, using a @media rule, or in the <link> you use to load your CSS (using the media="" attribute with the appropriate media query). But of course and unfortunately, not all browsers support this (follow my gaze) > For example, for resolution 1280x800 I would like client to use > Project1280x800.css, for 1400x1050 Project1400x1050.css and so on... I > hope you understand what would I like to do. Believe it or not, in 1280x1024, my browser window isn't ever larger than 1000px, it makes lines shorter hence much easier to read. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
