html做二级栏目,我跟着视频做的,但是我的二级栏目被标题覆盖了,为什么?

<!DOCTYPE html>
<html>
<head>
	<title></title>
	<meta charset="utf-8">
	<style type="text/css">
		*{
			margin: 0;
			padding: 0;
		}
		.page{
			width: 100%;
			height: 4000px;
			background-color: yellow;
		}

		.nav{
			width: 160px;
			height: auto;
			position: fixed;
			left: 0;
			top: 50%;
			margin-top:-103px ;

		}

		.nav-li{
			width: 160px;
			height: 40px;
			border-bottom: 1px solid #fff;
			text-align: center;
			line-height: 40px;
			color: #fff;
			font-size: 16px;
			background-color: #333;
		}

		.nav-li ul{
			width: 160px;
			height: auto;

		}

		.nav-li ul li{
			width: 160px;
			height: 40px;
			border-bottom: 1px dashed #666;
			color: #333;
			text-align: center;
			line-height: 40px;
			background-color: white;
		}

	</style>
</head>
<body>
		<div class="page">
			<div class="nav">
				<div class="nav-li">
				<div class="tit">标题</div>
				<ul>
					<li>二级栏目</li>
				</ul>
				</div>
				<div class="nav-li">标题</div>
				<div class="nav-li">标题</div>
				<div class="nav-li">标题</div>
				<div class="nav-li">标题</div>
			</div>
		</div>
</body>
</html>


慕容0347852
浏览 899回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP