CSS執行個體(二):靈活使用Input元素

來源:互聯網
上載者:User

在WEB開發過程中,資訊錄入介面中,經常會有一個特殊的輸入元素,如:必要欄位、日期選擇欄位、在快顯視窗中選值的欄位,使用CSS來設定這些元素的外觀,可以省去一些不必要的按鈕、提示,使頁面更加簡潔。
  效果如下:

  實現這樣的效果,只須一張圖片:

CSS代碼很簡單:Html代碼  

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh-CN" dir="ltr">  
  3.   <head>  
  4.     <title>隔壁老王 - CSS技術網站</title>  
  5.   </head>  
  6.   <style type="text/css">  
  7.     .input1,.input2,.input3{  
  8.         padding:0;  
  9.         height:15px;  
  10.         line-height:15px;  
  11.         border:1px solid #ABAFFB;  
  12.         background:url(inputbk.gif) no-repeat right 0;  
  13.         width:300px;  
  14.     }  
  15.     .input2{  
  16.         background-position:right -15px;  
  17.     }  
  18.     .input3{  
  19.         background-position:right -30px;  
  20.         background-repeat:repeat-x;  
  21.     }  
  22.   </style>  
  23. <body>  
  24. <h2>靈活使用CSS,控制input元素的外觀,<br/>可以省去一些不必要的按鈕、提示。</h2>  
  25. <input class="input3" value="靈活使用CSS,必要欄位"/></br></br>  
  26. <input class="input1" value="wallimn"/></br></br>  
  27. <input class="input2" value="http://wallimn.iteye.com"/>  
  28. </body>  
  29. </html> 

相關文章

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.