David Murdoch:Chrome支持input=[type=text]占位文本屬性,但下列CSS樣式卻不起作用:
CSS
input[placeholder], [placeholder], *[placeholder] { color:red !important; }
HTML input語句
<input type="text" placeholder="Value" />
執行結果值還是灰色, Color:red 沒有作用。
有什么方法能夠改動占位文本的顏色嗎?我在瀏覽器里安裝了jQuery占位文本插件,但仍然無用。
(!important僅僅有IE7和firefox能識別)
回答:
toscho:有三種實現方式:偽元素(pseudo-elements)、偽類( pseudo-classes)和Notihing。
WebKit和Blink(Safari,Google Chrome, Opera15+)使用偽元素
|
::-webkit-input-placeholder
|
|
:-moz-placeholder
|
|
::-moz-placeholder
|
|
:-ms-input-placeholder
|
IE9和Opera12下面版本號的CSS選擇器均不支持占位文本。
須要注意的是偽元素在Shadow DOM里會起到元素的真實作用。
CSS選擇器
由於每一個瀏覽器的CSS選擇器都有所差異,所以須要針對每一個瀏覽器做單獨的設定。
::-webkit-input-placeholder { /* WebKit browsers */ color: #999; } :-moz-placeholder { /* Mozilla Firefox 4 to 18 */ color: #999; } ::-moz-placeholder { /* Mozilla Firefox 19+ */ color: #999; } :-ms-input-placeholder { /* Internet Explorer 10+ */ color: #999; }
Matt:textareas(文本框可拉伸)風格樣式的代碼。例如以下:
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder { color: #636363; } input:-moz-placeholder, textarea:-moz-placeholder { color: #636363; }
brillout.com:input和Textarea的字體顏色均為紅色。全部樣式都要針對不同的選擇器而定,不要打包總體處理,由於當中一個出問題。其它的都會失效。
*::-webkit-input-placeholder { color: red; } *:-moz-placeholder { color: red; } *:-ms-input-placeholder { /* IE10+ */ color: red; }
James Donnelly:在Firefox和IE里,正常input文本顏色覆蓋占位符顏色的方法:
::-webkit-input-placeholder { color: red; text-overflow: ellipsis; } :-moz-placeholder { color: #acacac !important; text-overflow: ellipsis; } ::-moz-placeholder { color: #acacac !important; text-overflow: ellipsis; } /* for the future */ :-ms-input-placeholder { color: #acacac !important; text-overflow: ellipsis; }
另一種好辦法:
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder { color: #666; } input:-moz-placeholder, textarea:-moz-placeholder { color: #666; } input::-moz-placeholder, textarea::-moz-placeholder { color: #666; } input:-ms-input-placeholder, textarea:-ms-input-placeholder { color: #666; }
最后一種是從網上找的:
$('[placeholder]').focus(function() { var input = $(this); if (input.val() == input.attr('placeholder')) { input.val(''); input.removeClass('placeholder'); } }).blur(function() { var input = $(this); if (input.val() == '' || input.val() == input.attr('placeholder')) { input.addClass('placeholder'); input.val(input.attr('placeholder')); } }).blur(); $('[placeholder]').parents('form').submit(function() { $(this).find('[placeholder]').each(function() { var input = $(this); if (input.val() == input.attr('placeholder')) { input.val(''); } }) });
這個代碼調用的規則是,先載入Javascript再用CSS改動占位符屬性。
form .placeholder { color: #222; font-size: 25px; /* etc */ }
user1729061:不用CSS和占位文本,相同能得到相同效果。
input type="text" value="placeholder text" onfocus="this.style.color='#000'; this.value='';" style="color: #f00;"/>
原文:Change an input's HTML5 placeholder color with CSS