3
赞
首先你要像前面那位说的,加一行如下代码防止手机浏览器强制缩放
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
从HTML 4.01开始,不赞成使用标签属性定义样式和外观,并在HTML5中废除大多数样式外观类属性。如果要定义样式,请使用css的text-align属性。
<style type="text/css">
body
{
background-repeat:no-repeat;
background-attachment:fixed;
text-align:center;
}