我正在安卓标签和手机上测试 html 文件。不同分辨率的视口我使用了元视口:
<meta name="viewport" content = "width=device-width , target-densityDpi=device-dpi , user-scalable = no , initial-scale=.51,maximum-scale=0.51,minimum-scale=0.51"/>
但它不工作意味着不缩放我的 BG 图像。
我也试过了:
<meta name="viewport" content = "width=device-width;target-densityDpi=device-dpi ; user-scalable = no ;initial-scale=.51;maximum-scale=0.51;minimum-scale=0.51"/>
唯一的区别是';' 但它 logcat 显示视口被忽略
我不明白为什么会这样
这是我的 css 文件:
body {
background-repeat: no-repeat;
margin: 0;
}
div { width: 1280px; height: 670px; }
home {
background-image: url('../images/abc_title.png');
width: 1280px;
height: 670px;
background-repeat: no-repeat;
}
abc_slide {
position: relative; background : transparent;
width: 129px;
height: 76px;
background: transparent; width : 129px; height : 76px;
margin-top: 80px;
margin-left: 80px;
border: thin;
}
song_slide {
position: relative;
background: transparent;
margin-top: 80px;
margin-left: 80px; width : 129px;
height: 76px;
width: 129px;
border: thin;
}
HTML:
通过这些设置,我在选项卡 2 7 上看到了以下情况:
添加无重复卷轴后已经存在。