<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">nav &gt; ul {
  font-size: 16px;
  font-family:Arial, Helvetica, sans-serif;
  list-style: none;
  margin: 0;
  padding: 0;
 
}

nav {
  width: 1100px;
  margin: 0px auto 0px;
  font-size: 16px;

}

nav &gt; ul &gt; li {
  width: 180px;
  float: left;
  position: relative;
  z-index: 111111;
}

nav &gt; ul &gt; li a {
  display: block;
  background: #716F72;
  color: #fff;
  padding: 16px 0px;
  text-align: center;
  text-decoration: none;
}

nav &gt; ul &gt; li a:hover { background: #423C3C;  color: #fff;}

nav &gt; ul &gt; li:hover a + ul { /*    display: block;*/
}

nav &gt; ul &gt; li &gt; ul {
  position: absolute;
  width: 100%;
  left: 0px;
  top: 100%;
  display: none;
}
</pre></body></html>