blob: fab8bf73554143fb8033f2d0130d3378c23ae460 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE html>
<title>Reference: Select element in flexbox with zero height</title>
<link rel="author" title="Mozilla" href="https://mozilla.org">
<style>
.container {
height: 0px;
border: 1px dotted black;
}
select {
/*
WebKit applies intrinsic (default) margins to control elements in some circumstances,
let's disable them to avoid mismatch errors caused by those margins.
*/
margin: 0;
}
</style>
<body>
<div class="container">
<select style="width:100%"><option>Hi</option></select>
</div>
</body>
|