mirror of
https://github.com/servo/servo.git
synced 2025-06-06 00:25:37 +00:00
14 lines
341 B
HTML
14 lines
341 B
HTML
<!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;
|
|
}
|
|
</style>
|
|
<body>
|
|
<div class="container">
|
|
<select style="width:100%"><option>Hi</option></select>
|
|
</div>
|
|
</body>
|