I'm new to web development and I'm trying to do a bit of exercise with flex which i want to try the header of this:

...but somehow I can't make the header have a white background:

body {
  background: gray;
}
header {
  background: white;
}
ul.header-nav {
  list-style: none;
  display: flex;
}
ul.header-nav.left {
  float: left;
}
ul.header-nav.right {
  float: right;
}<header>
  <nav>
    <ul class="header-nav left">
      <li>Home</li>
      <li>Plans</li>
      <li>Products</li>
      <li>About</li>
      <li id="gift">Gift</li>
    </ul>
    <ul class="header-nav right">
      <li>Help</li>
      <li>Sign In</li>
      <li>Cart</li>
    </ul>
  </nav>
</header> 
     
     
     
    