<!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 {
text-decoration: none;
/* a标签的字体颜色要直接对a标签进行设置 */
color: aquamarine;
}
/* 后代选择器 */
.nav a {
width: 150px;
height: 50px;
border: 1px solid red;
/* a标签是行内元素,设置宽高无效 */
/* 模式转换一下 行内块元素 */
display: inline-block;
/* 水平居中 */
text-align: center;
/* 垂直居中 行内元素*/
line-height: 50px;
}
/* 当鼠标悬停时更换显示图片和更换字体颜色 */
.nav a:hover {
background: url(https://blog.csdn.net/img/03img.png) no-repeat center;
color: blueviolet;
}
</style>
</head>
<body>
<div class="nav">
<a href="">首页</a>
<a href="">业务展示</a>
<a href="">人才招聘</a>
<a href="">关于我们</a>
<a href="">联系我们</a>
</div>
</body>
</html>

232

被折叠的 条评论
为什么被折叠?



