GWT browser specific css

Yea it is possible to write browser specific css with GWT application which uses CSS through CssResource.

@if user.agent gecko1_8 {
    .startup p {
        color: #000000;
        text-shadow: 0 0 3px #000000;
    }
} @else {
    .startup p {
        color: #000000;
    }
}

Note: You can use this logical if else and many more other expression inside css which are used inside GWT code. Only through CssResource interface. If you are directly using the respective css inside html main source file then this will not work.

For more details refer

GWT 

See also