CSS網頁小技巧:隱藏input 內的文字的方法

來源:互聯網
上載者:User

隱藏input的方法在瀏覽器中各不相同,我們用於網頁使用它時並不希望它改變本身內聯的屬性,現單獨分析如下:
首先寫一個公用樣式:

 代碼如下 複製代碼
input{
 height:20px;
 width:50px;
}

1,IE6,IE7瀏覽器
方法1

 代碼如下 複製代碼
input{
 height:20px;
 width:50px;
 line-height:100em;
}

方法2

 代碼如下 複製代碼
input{
 height:20px;
 width:50px;
 padding-top:60px;
}

方法3

 代碼如下 複製代碼
input{
 height:20px;
 width:50px;
 line-height:8em;
}

方法4

 代碼如下 複製代碼
input{
 height:20px;
 width:50px;
 font-size:80em;
}

方法5

 代碼如下 複製代碼
input{
 height:20px;
 width:50px;
 line-height:25em;
}

2.FF瀏覽器
方法1:

 代碼如下 複製代碼
input{
 height:20px;
 width:50px;
 text-indent:-999px;
}

方法2:

 代碼如下 複製代碼
input{
 height:20px;
 width:50px;
 font-size:0;
}

3.Opera瀏覽器
方法1

 代碼如下 複製代碼
input{
 height:20px;
 width:50px;
 padding-top:60px;
}

總結:從以上代碼看,沒有一個全適的樣式適合所有瀏覽器,只能有針對性的加入HACK技術才可相容各瀏覽器了!

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.