blob: d76865abbf017605e78e9611240007ebfe9cbb02 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!doctype html>
<style>
select {
appearance: none;
outline: none;
border: none;
}
</style>
<select multiple>
<option>First</option>
<option>Second</option>
<option>Third</option>
</select>
|