IE8背景平铺 input输入框提示语

纠结了许久的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的浏览器上, 更是一句话搞定 , 加上placeholder="" 属性就ok, 解决了密码框的提示语效果

<input name="password" class="enter-item first-enter-item" id="password" type="password" value="" placeholder="Password">


你可能感兴趣的:(IE8背景平铺 input输入框提示语)