<!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>
a {
display: block;
width: 230px;
height: 40px;
background-color:#535759;
font-size: 14px;
color: red;
text-decoration: none;
text-indent: 2em;
}
/* 鼠标经过变换背景颜色 */
a:hover{
background-color: orange;
}
</style>
</head>
<body>
<a href="#">手机</a>
<a href="#">电视</a>
<a href="#">笔记本</a>
<a href="#">出行</a>
<a href="#">智能</a>
<a href="#">健康</a>
</body>
</html>
|