代码
<!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>Document</title>
<style>
*{
margin:0%;
padding: 0%;
}
ul{
list-style: none;
}
.box{
width: 300px;
margin: 0,auto;
}
.box .item{
float:left;
width: 148px;
text-align: center;
border: 1px solid blue;
background-color: blue;
line-height: 40px;
color:white;
}
.item:hover {
background-color: lightblue;
}
.item ul{
background-color: white;
color:black;
display: none;
}