<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>制作一个菜单栏</title>
<style type="text/css">
.menu{
width: 694px;
height: 50px;
margin:20px auto 0;
font-size: 0;
}
.menu a{
width: 98px;
height: 48px;
background-color: #fff;
margin-left:-1px;
text-decoration: none;
font-size:16px;
border:1px solid gold;
line-height: 50px;
text-align:center;
display: inline-block;
color: pink;
font-family: "雅黑";
}
.menu a:hover{
background-color: #99FFFF;
color: #fff;
font-weight: bold;
font-style: italic;
}
.box{
width: 160px;
background-color: gold;
display: none;
margin:0px auto;
}
.con:hover .box{
display: block;
}
.con h3{
font-size: 30px;
color:green;
text-align: center;
}
</style>
</head>
<body>
<div class="con">
<h3>公司详情</h3>
<div class="box">深圳腾讯科技有限公司</div>
</div>
<div class="menu">
<a href="https://www.tencent.com/">首页</a>
<a href="https://www.tencent.com/zh-cn/about.html">公司简介</a>
<a href="https://www.tencent.com/zh-cn/business.html">业务</a>
<a href="https://www.tencent.com/zh-cn/employees.html">员工</a>
<a href="https://www.tencent.com/zh-cn/responsibility.html">企业责任</a>
<a href="https://www.tencent.com/zh-cn/investors.html">投资者</a>
<a href="https://www.tencent.com/zh-cn/media.html">媒体</a>
</div>
</body>
</html>