appearance-textfield-001-ref.html (761B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>Reference for CSS Basic User Interface Test: appearance: textfield</title> 4 <style> 5 #container { width: 500px; } 6 </style> 7 <div id="container"> 8 <a>a</a> 9 <button>button</button> 10 <input type="text" value="input-text"> 11 <input type="text" value="input-search"><!-- intentionally type="text" --> 12 <textarea>textarea</textarea> 13 <input type="button" value="input-button"> 14 <input type="submit" value="input-submit"> 15 <input type="reset" value="input-reset"> 16 <input type="range"> 17 <input type="checkbox"> 18 <input type="radio"> 19 <input type="color"> 20 <select><option>select</option></select> 21 <select multiple><option>select-multiple</option></select> 22 <meter value=0.5></meter> 23 <progress value=0.5></progress> 24 </div>