select-appearance-mixing-ref.html (351B)
1 <!DOCTYPE html> 2 <style> 3 .custom, .custom::picker(select) { 4 appearance: base-select; 5 } 6 </style> 7 8 <select multiple> 9 <option>normal</option> 10 <div> 11 <option> 12 <div>div</div> 13 <span>span</span> 14 text 15 </option> 16 </div> 17 </select> 18 19 <select multiple class=custom> 20 <option>normal</option> 21 <option>base-select</option> 22 </select>