blob: 2f15740fc164d612af0676eef1e5d6b27aa10b7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE html>
<style>
div {
height: 240px;
}
#f {
height: auto;
overflow: hidden;
padding: 0;
border: none;
}
</style>
There should be a visible select below:
<div>
<select id="f"><option>This is a select</option></select>
</div>
|