<!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 {
display: inline-block;
text-decoration: none;
width: 120px;
height: 58px;
text-align: center;
line-height: 54px;
color: #3f3f3f;
}
.one {
position: relative;
background-image: url(../Day3/images/bg1.png);
}
.two {
position: relative;
background-image: url(../Day3/images/bg2.png);
}
.three {
position: relative;
background-image: url(../Day3/images/bg3.png);
}
.three img {
display: none;
position: absolute;
bottom: -130px;
left: 0;
}
.four {
background-image: url(../Day3/images/bg4.png);
}
.one:hover {
background-image: url(../Day3/images/bg5.png);
color: white;
}
.two:hover {
background-image: url(../Day3/images/bg6.png);
color: white;
}
.three:hover {
background-image: url(../Day3/images/bg7.png);
color: white;
}
.three:hover img {
display: block;
}
.four:hover {
background-image: url(../Day3/images/bg8.png);
color: white;
}
</style>
</head>
<body>
<a href="#" class="one">五彩导航</a>
<a href="#" class="two">五彩导航</a>
<a href="#" class="three">五彩导航
<img src="./images/code.jpg" alt=""></a>
<a href="#" class="four">五彩导航</a>
</body>
</html>