I want to set margin and padding for only chrome browser.
how can i set css for only chrome browser because there are some more padding or margin for that
I want to set margin and padding for only chrome browser.
how can i set css for only chrome browser because there are some more padding or margin for that
Please refer to the following link-- it may surely help you-
How to apply specific CSS rules to Chrome only?
Also you can detect browser with the help of following script --
<script type="text/javascript">
if (navigator.userAgent.toLowerCase().indexOf('chrome')!=-1){
document.write('<link rel="stylesheet" type="text/css" href="your_script.css"/>');
}
</script>
try detecting browser using
navigator.userAgent
for further assistance browser detection
once detected in javascript or jquery add the class with margin and padding to the body