Drupal 7 浏览器特定 css
我怎样才能在 Drupal 7 中拥有浏览器特定的 css 。如果浏览器是 chrome 我想加载 chrome.css 。请帮忙
How can i have a browser specific css in Drupal 7 . I would like to load chrome.css if browser is chrome . Please help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以在 template.php 文件中使用 preprocess_html 执行此操作主题挂钩和 drupal_add_css 函数。
您将在 drupal 7 主题中找到示例,例如在 bartik 中:
编辑:由于 chrome 没有条件注释,您可以检查 $_SERVER['HTTP_USER_AGENT'] :
但在执行此操作之前,尝试修复你的CSS规则!
You can do this in your template.php file with a preprocess_html theme hook and drupal_add_css function.
You will find example in drupal 7 theme, for example in bartik :
Edit : since there are no conditional comments for chrome, you can check $_SERVER['HTTP_USER_AGENT'] :
But before doing this, try to fix your css rules !
我建议使用条件样式表模块
I recommend using the Conditional Stylesheets module
我同意之前发言者的观点,你绝对应该尝试更改你的 css,这样就不需要特定于浏览器的代码,但如果你确实需要针对 Webkit 浏览器(Chrome 和 Safari),你可以看看这个解决方案:
http://www.evotech.net /blog/2010/04/hack-for-webkit-filter-for-chrome-and-safari/
它并不是 Drupal 特有的,而是一种在紧急情况下针对 webkit 的普遍接受的方式。
I agree with previous speakers, you should absolutely try to change your css so that does not need browser specific code, but if you really need to target the Webkit browsers (Chrome and Safari) you can have a look at this solution:
http://www.evotech.net/blog/2010/04/hack-for-webkit-filter-for-chrome-and-safari/
It is not specific to Drupal, but a so-so accepted way of targeting webkit, in case of emergency.