blob: b88768a3f659c978c850bf54044f07e6f0fa36db [file] [edit]
<!DOCTYPE html>
<html>
<head>
<style>
select {
appearance: base-select;
font-size: 30px;
inline-size: 250px;
block-size: 50px;
color: transparent;
}
select::picker-icon {
display: none;
}
</style>
</head>
<body>
<select id="target">
<option>Option 1</option>
</select>
<script>
onload = () => target.focus();
</script>
</body>
</html>