html简单菜单栏
<!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">
<title>Document</title>
<link rel="stylesheet" href="">
<style>
/* 简单菜单栏 */
a {
display: block;
width: 230px;
height: 40px;
font-size: 16px;
color: white;
text-decoration: none;
background-color: gray;
text-indent: 2em;
line-height: 40px;
}
a:hover {
background-color: aqua;
}
</style>
</head>
<body>
<a href="#">手机电脑</a>
<a href="#">电视</a>
<a href="#">笔记本</a>
<a href="#">耳机</a>
<a href="#">音响</a>
</body>
</html>