我最近上线了我的“阿尔法”舞台网站 - http://www.elegantdesigns.comule.com/
我使用媒体查询在移动支持的情况下对其进行了完全编码。当在浏览器中查看并缩小宽度时,它可以完美地工作。但是,当我在宽度为 720 像素的移动设备(三星 Galaxy Note 2)上使用它时,所有内容的右侧都有一个空间,仅由页面背景填充。
我使用了 100% 的宽度,我还为多个元素设置了 overflow-x 隐藏。
使用上面的链接自行查看。
这就是网站在我的设备上的样子。
http://i.stack.imgur.com/27wJc.png
有人有想法么?
以下是控制网站主要移动部分的所有样式表的链接。- http://elegantdesigns.comule.com/mobilestyle.css - http://elegantdesigns.comule.com/tabstyle.css
这是控制标题的html:
<html>
<head>
<title>Flat Designs</title>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" type="text/css" media="only screen and (min-width: 811px)"href="mainstyle.css">
<link rel="stylesheet" type="text/css" media="only screen and (max-width: 810px) and (min-width: 721px)" href="tabstyle.css">
<link rel="stylesheet" type="text/css" media="only screen and (max-width: 720px) and (min-width: 521px)" href="mobilestyle.css">
<link rel="stylesheet" type="text/css" media="only screen and (max-width: 520px) and (min-width: 431px)" href="tinystyle.css">
<link rel="stylesheet" type="text/css" media="only screen and (max-width: 430px) and (min-width: 1px)" href="smalleststyle.css">
<link rel="shortcut icon" href="http://www.iconj.com/ico/9/e/9ecev208p2.ico" type="image/x-icon" />
<link href='http://fonts.googleapis.com/css?family=Ropa+Sans:400italic' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700' rel='stylesheet' type='text/css'>
</head>