HTML5 input placeholder 顏色 修改

來源:互聯網
上載者:User

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
Mozilla Firefox 4-18使用偽類 
:-moz-placeholder
Mozilla Firefox 19+ 使用虛擬元素
::-moz-placeholder
IE10使用偽類 
:-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


聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.