1.style中需要作如下修改:
<style> input::-webkit-input-placeholder { /* placeholder顏色 */ color: #aab2bd; /* placeholder字體大小 */ font-size: 12px; } </style>
2.HTML中的代碼如下:
<input type="text" placeholder="輸入你想要查找的內容" id="groupName">
3.同理textarea改變字體的大小和顏色方式:
style:
textarea::-webkit-input-placeholder { /* WebKit browsers */ color: #9c9c9c; } textarea:-moz-placeholder { /* Mozilla Firefox 4 to 18 */ color: #9c9c9c; } textarea::-moz-placeholder { /* Mozilla Firefox 19+ */ color: #9c9c9c; } textarea::-ms-input-placeholder { /* Internet Explorer 10+ */ color: #9c9c9c; }