input placeholder屬性 樣式修改(顏色,大小,位置)
阿新 • • 發佈:2019-01-07
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style> input::-webkit-input-placeholder { /* placeholder顏色 */ color: #aab2bd; /* placeholder字型大小 */ font-size: 12px; /* placeholder位置*/ text-align: right; } input { border: 1px solid red; } </style> </head> <body> <input type="text" placeholder="請輸入手機號"> </body> </html>
input::-webkit-input-placeholder { /* WebKit, Blink, Edge */ color: #909; } input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */ color: #909; } input::-moz-placeholder { /* Mozilla Firefox 19+ */ color: #909; } input:-ms-input-placeholder { /* Internet Explorer 10-11 */ color: #909; }