首页>>表单>>自动调节input textarea select的宽度 自适应输入框宽度(2018-08-26)

自动调节input textarea select的宽度 自适应输入框宽度

自动调节input textarea select的宽度 自适应输入框宽度
赞赏支持
立刻微信赞赏支持 关闭

 

XML/HTML Code
  1. <label>Textarea:  
  2.         <textarea placeholder="Type here too"></textarea>  
  3.     </label>  
  4.       
  5.     <label>Input with placeholder:  
  6.         <input placeholder="Type some text" />  
  7.     </label>  
  8.   
  9.     <label>Input with intial value:  
  10.         <input value="Some text" />  
  11.     </label>  
  12.   
  13.     <label>Select:  
  14.         <select>  
  15.             <option>CSS</option>  
  16.             <option>JavaScript</option>  
  17.             <option>HTML</option>  
  18.             <option>SVG</option>  
  19.             <option>WAI-ARIA</option>  
  20.         </select>  
  21.     </label>  

 


原文地址:http://www.freejs.net/article_biaodan_684.html