<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<style>
*{
margin: 0;
padding: 0;
}
.box {
width: 300px;
margin: 0 auto;
}
ul {
list-style: none;
}
.box .item {
float: left;
width: 148px;
text-align: center;
border: 1px solid red;
background-color: red;
color: white;
line-height: 40px;
}
.item:hover {
background-color: blue;
}
.item ul {
display: none;
background-color: white;
color: red;
}
.item:hover ul{
display: block;
}
.item li:hover {
color: blue;
}
</style>
</head>
<body>
<ul class="box">
<li class="item">视频教程
<ul>
<li>全部视频教程</li>
<li>全部视频教程</li>
<li>全部视频教程</li>
<li>全部视频教程</li>
</ul>
</li>
<li class="item">认证考试
<ul>
<li>pmp</li>
<li>弘茂平</li>
</ul>
</li>
</ul>
</body>
</html>
11-14
92