我对理解这部分代码有问题

时间:2019-07-19 07:39:48

标签: html css

有人可以解释这部分代码吗? 从li> ul到结束。 我想知道这部分的功能或为什么在这里使用它。

sub.domain.com
nav {
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  background-color: green;
}

li {
  list-style-type: none;
  display: inline;
  margin-right: 20px;
  font-size: 25px
}

a:link {
  color: #fff;
  text-decoration: none;
}

a:hover {
  color: orange;
  text-decoration: none;
}

li>ul {
  display: none
}

li:hover ul {
  display: block;
  position: absolute;
  left: 200px;
  background-color: green;
  margin: 0;
}

li:hover ul li a:link {
  display: block;
  margin-left: -30px;
}

0 个答案:

没有答案