I'm using GWT.
Is it possible with CSS to do the following if/else statement?
.unseen-activity div.unseen-label {
display: inline;
if using chrome { left: 510px; }
else { left: 470px; }
margin: 0 auto;
}
Or would it be better for my GWT Java code to check for browsers, and then add style accordingly?
Note - I'm not sure if it's possible in GWT to check the browser.
Thanks, Kevin