I have a class with the following attributes
.vote{
position:absolute;
margin: 53px 3px 0 60px;
}
But i want to give the margin: 53px 3px 0px 60px in firefox and
margin:53px 3px 0 115px in chrome. What i have to do for that using conditional comments
You can use JavaScript for detecting the users browser via userAgent, than according to the result you can aply the needed style.
You just need to check the possible browser names than return the name of it.