纠结了许久的IE8及以下背景平铺问题 , 简单几句CSS样式就搞定了
</pre><pre name="code" class="html"><html>
<head>
<title>Test</title>
<style type="text/css" >
body
{
height:100%;
width:100%;
background:url(bg.jpg);
-moz-background-size:cover;
-ms-background-size:cover;
-webkit-background-size:cover;
background-size:cover;
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=bg.jpg,sizingMethod=scale);
}
</style>
</head>
<body>
</body>
<html>
input输入框的提示语, 在支持html5的浏览器上, 更是一句话搞定 , 加上place