<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
a{
width: 100px;
height: 40px;
display: inline-block; /*更改元素属性*/
background-color:blue; /*背景色*/
text-decoration: none; /*去除下划线*/
text-align: center; /*横向居中显示*/
line-height: 40px; /*纵向减去文字的高度然后居中显示*/
}
a:link,a:visited,a:active{ /*链接属性,访问过的链接属性,点击链接时的属性*/
color: white;
}
a:hover{ /*鼠标放在上面的效果*/
background-color:aquamarine;`
}
</style>
</head>
<body>
<a href="#">门户导航</a>
<a href="#">担保系统</a>
<a href="#">精易产品</a>
<a href="#">门户导航</a>
<a href="#">担保系统</a>
<a href="#">精易产品</a>
</body>
</html>