我在使用 chrome 浏览器的 android 上的 css 有问题
我在 CSS 中所做的是:
html{
max-width: 100%;
height: 100%;
width: 100%;
overflow: hidden;
position: relative;
}
body{
background-color: rgba(101,122,151,0.8);
margin: 0px;
width: 100%;
overflow: hidden;
position: relative;
}
header {
width: 100%;
min-width: 100%;
color: yellow;
font-size: 40px;
text-align: left;
}
在 javascript 中,我打印出正文和标题的宽度
alert($('header').width());
alert($('body').width());
它向我显示正文宽度为 980,标题宽度为 340,但我不明白为什么。有人能帮我吗?谢谢