萬盛學電腦網

 萬盛學電腦網 >> 網頁制作 >> DivCSS教程 >> CSS制作網頁布局實例:隱藏input文字

CSS制作網頁布局實例:隱藏input文字

以下是引用片段:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>隱藏 input 內文字的方法</title>
<style type="text/css">
/*<![CDATA[*/
input {
 margin:5px 0;
 width:200px;
 height:20px;
 display:block;
 overflow:hidden;
 background:#f9f9f9;
 border:1px solid orange;
 }
input.a {
 ie:expression(bb.value="提交");
 text-indent:-200em;
 }
input.b {
 padding-top:20px;
 }
input.c {
 font-size:100em
 }
/*]]>*/
</style>
</head>
<body>
<input type="button" value="提交" id="bb" class="a" />
<input type="button" value="提交" class="b" />
<input type="button" value="提交" class="c" />
</body>
</body>
</html>
 

      我們需要特別注冊的是下面的代碼:

以下是引用片段:
input {
 margin:5px 0;
 width:200px;
 height:20px;
 display:block;
 overflow:hidden;
 background:#f9f9f9;
 border:1px solid orange;
}
      我們看下面的分析:

      第一種方法

以下是引用片段:
input.a {
 ie:expression(bb.value="提交");
 text-indent:-200em;
}   
      在opera上有問題

      第二種方法

以下是引用片段:
input.b {
 padding-top:20px;
}  
      如果這個值太小了在opera上文字還是可見,所以設置大一些就沒問題了,但FF中又會出現把高度撐大的現象;
 
     第三種方法

以下是引用片段:
input.c {
 font-size:100em
}  
      這種方法應該說是兼容性最好的。

copyright © 萬盛學電腦網 all rights reserved