<!DOCTYPE html><html lang="zh-CN"> <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" /> <link rel="stylesheet" href="index.css" /> <title>Index</title> </head> <body> <div class="dropdown"> <button>名称</button> <ul> <li>沐</li> <li>颖</li> <li>汐</li> </ul> </div> </body></html>
button {
padding: 0;
margin: 0;
width: 100px;
font-size: 16px;
border: none;
background-color: yellowgreen;
}
ul {
padding: 0;
margin: 0;
}
ul li {
list-style: none;
}
.dropdown {
width: 100px;
margin: 0 auto;
text-align: center;
cursor: pointer;
}
.dropdown ul {
display: none;
}
.dropdown:hover ul {
display: block;
}