问题出在我的blog上。所以我不能把代码放在这里。好的,如果你看到,当你在桌面浏览器中打开这个博客,并减少浏览器的宽度时,博客的内容缩小,即宽度减少(它不会滚动到横向干预)。这是因为使用了宽度:100%和 max-width 属性。
但是当您在手机的浏览器中打开此博客时,虽然手机的屏幕分辨率低于桌面浏览器,但它并不关注它们。为什么内容不缩小?我理解错了吗?
答案 0 :(得分:0)
最大宽度应包含像素(px)而不是百分比符号(%)。
1)将此添加到文件的头部:
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
2)尝试媒体查询,例如
<style type="text/css">
/* default styles here for older browsers.
I tend to go for a 600px - 960px width max but using percentages
*/
@media only screen and (min-width:960px){
/* styles for browsers larger than 960px; */
}
@media only screen and (min-width:1440px){
/* styles for browsers larger than 1440px; */
}
@media only screen and (min-width:2000px){
/* for sumo sized (mac) screens */
}
@media only screen and (max-device-width:480px){
/* styles for mobile browsers smaller than 480px; (iPhone) */
}
@media only screen and (device-width:768px){
/* default iPad screens */
}
/* different techniques for iPad screening */
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) {
/* For portrait layouts only */
}
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) {
/* For landscape layouts only */
}
</style>
答案 1 :(得分:-1)
你应该使用
<meta name="viewport" content="width=device-width, initial-scale=1">
在您的网页html <head>
中,让您的博客移动友好