在很多網(wǎng)站上我們都看到input輸入框顯示提示文字,讓我們一起來看看如果在input輸入框中顯示提示文字。我們只需要在<input>標(biāo)簽里添加:placeholder="提示文字即可",那么如果要修改提示文字的樣式呢?可以這樣設(shè)置css樣式:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>input輸入框提示文字</title>
<style>
/*修改提示文字的顏色*/
input::-webkit-input-placeholder { /* WebKit browsers */
color: red;
}
input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
color: red;
}
input::-moz-placeholder { /* Mozilla Firefox 19+ */
color: red;
}
input:-ms-input-placeholder { /* Internet Explorer 10+ */
color: red;
}
</style>
</head>
<body>
<input type="text" placeholder="請輸入用戶名" />
</body>
</html>
修改后提示文字樣式如下:
PS:下面看下HTML5里的input標(biāo)簽的required屬性提示文字修改
在做表單提交時(shí)我們有時(shí)會(huì)遇到這樣的需求,在用戶沒有輸入必填信息點(diǎn)提交時(shí)提示文字需要改為我們想要的提示信息,那么可以在input里面增加這樣的語句:
<input type="text" placeholder="您的姓名" required oninvalid="setCustomValidity('請輸入您的姓名');" oninput="setCustomValidity('');" />
到此這篇關(guān)于html中input提示文字樣式修改的文章就介紹到這了,更多相關(guān)html input 文字樣式內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持腳本之家!