<!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>
ul {
padding: 0;
margin: 0;
width: 300px;
height: 550px;
background-color: #2C505F;
}
li {
padding-left: 30px;
display: block;
height: 55px;
line-height: 55px;
list-style-type: none;
font-size: 16px;
color: white;
}
li:hover {
background-color: #FF0000;
}
</style>
</head>
<body>
<ul>
<li>手机 电话卡</li>
<li>笔记本 显示器</li>
<li>家电 插线板</li>
<li>出行 穿戴</li>
<li>智能 路由器</li>
<li>电源</li>
<li>配件</li>
<li>健康 儿童</li>
<li>耳机 音响</li>
<li>生活 箱包</li>
</ul>
</body>
</html>
2.结果