blob: 0689ed43b8d484a5da8a55271623c39519e87847 (
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 autofocus>
<option>First</option>
<option>Second</option>
<option>Third</option>
</select>
|