11

I've added a Twitter Follow button to my site, using Twitter's instructions But in the Chrome console I see this warning:

Consider using 'dppx' units, as in CSS 'dpi' means dots-per-CSS-inch, not dots-per-physical-inch, so does not correspond to the actual 'dpi' of a screen. In media query expression: (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) 

Any idea how to solve this?

4

1 回答 1

1

这在 Chrome 中是不可避免的,因为它会试图通知您它认为可能是推文按钮的问题。这甚至不是问题,只是一个建议。我对烦人的控制台消息的解决方案是通过在过滤器搜索中使用以下内容并检查正则表达式来隐藏控制台中的通知:

^(?!Consider using 'dppx')

这将隐藏以该句子开头的所有通知。在控制台选项卡的顶部,如果您还没有打开它,那么在清除控制台日志按钮旁边有一个过滤器按钮。您还可以按消息类型过滤,此通知出现在“调试”下。

于 2015-04-15T14:28:34.390 回答