天天看點

HTML 中 Input标簽的 placeholder 字型水準居中樣式:

人狠話不多…直接簡潔放樣式:

<style>
    input::-ms-input-placeholder{
            text-align: center;
    }
    input::-webkit-input-placeholder{
            text-align: center;
    }
</style>
           

樣式定義之後,就直接用Input标簽就可以啦…

<input id="txt_keyword" type="text"  placeholder="賬戶/姓名/手機" style="width: 200px;">
           
HTML 中 Input标簽的 placeholder 字型水準居中樣式:

如果幫到你了,請點贊噢~