我想只为Chrome浏览器设置边距和填充。
我如何才能为Chrome浏览器设置css,因为还有更多的填充或边距
答案 0 :(得分:1)
请参阅以下链接 - 它可能对您有所帮助 -
How to apply specific CSS rules to Chrome only?
您还可以使用以下脚本检测浏览器 -
<script type="text/javascript">
if (navigator.userAgent.toLowerCase().indexOf('chrome')!=-1){
document.write('<link rel="stylesheet" type="text/css" href="your_script.css"/>');
}
</script>
答案 1 :(得分:0)