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