CSSGoogle也難搞

來源:互聯網
上載者:User

在CSS攻城師眼裡,IE系列恐怕是相容性最不好的瀏覽器了,尤其是IE6了。但是我發現Google的Chrome瀏覽器也有難搞的地方,都是小細節方面,不知道大家有沒有遇到過。

一、預設不支援12px以下字型。不知道Google發什麼神經,如果你在某處設定文字大小font-size:10px,Chrome保證不會變,還是12px

解決:

1 .content { -webkit-text-size-adjust: none;} /*在小號文字樣式中加上*/

二、placeholder文字顏色。placeholder是HTML5新屬性,用於文字框內的提示,以替代用value+指令碼實現。如果你的提示文字需要改變字型顏色,Chrome瀏覽器要另加一句才能實現,如下代碼:

1 .input_text { color:#fff;}2 .input_text::-webkit-input-placeholder { color:#fff;} /*Chrome需另加一句*/

Author: 前端組

相關文章

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.