summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-flexbox/select-element-zero-height-002-ref.html
blob: 234ecd4e84f22100aa023b152e56e38399dda8a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<title>Reference: Select element with background color in flexbox with zero height</title>
<link rel="author" title="Mozilla" href="https://mozilla.org">
<style>
  .container {
    height: 0px;
    border: 1px dotted black;
  }
  .with-background {
    width: 100%;
    background: lime;
  }
  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 class="with-background"><option>Hi</option></select>
  </div>
</body>