如何简单制作一个菜单栏

<!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; /*距离顶部20像素,居中对齐*/
			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; /*外边框1像素 粗实线 金色*/
			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>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值