My current development tool is GWT.
Can I achieve the following conditional statement using CSS?
.unseen-activity div.unseen-label {
display: inline;
if using chrome { left: 510px; }
else { left: 470px; }
margin: 0 auto;
}
Alternatively, should I handle browser detection in my GWT Java code to apply styles accordingly?
Just a note - I'm not certain whether GWT provides a way to check for browsers.
Thank you, Kevin