有时,当我在手机或平板电脑上加载互联网页面时,它看起来不正确。是否可以将自定义CSS注入这些设备的页面?
更新:
答案 0 :(得分:1)
如果我理解你的问题,你想创建特定于移动设备的CSS来修复你网站的观看,是吗? 如果是这样,您可以使用CSS的媒体查询,如下所示:
@media only screen
and (min-device-width : xxx px)
and (max-device-width : xxx px)
and (orientation : landscape or portrait)
and (min-resolution: xxx dpi){
// your css goes here
}
以下是一些可能对您有帮助的链接:
http://help.campaignmonitor.com/topic.aspx?t=164
How to apply different CSS for mobile devices not just based on media width/height
http://css-tricks.com/snippets/css/retina-display-media-query/