listbox-focus.html (221B)
1 <!doctype html> 2 <style> 3 select { 4 appearance: none; 5 outline: none; 6 border: none; 7 } 8 </style> 9 <select multiple autofocus> 10 <option>First</option> 11 <option>Second</option> 12 <option>Third</option> 13 </select>