
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<style>
*{
margin: 0;
padding: 0;
}
ul{
display: inline-block;
background: red;
width: 300px;
height: 250px;
}
li{
width: 300px;
height: 50px;
line-height: 50px;
text-align: center;
}
.box{
width: 400px;
height: 150px;
background: yellow;
margin-left: 300px;
margin-top: -50px;
display: none;
}
li:hover{
background: pink;
}
li:hover .box{
display: inline-block;
}
</style>
</head>
<body>
<ul>
<li>侧边栏
<div class="box"></div>
</li>
<li>侧边栏</li>
<li>侧边栏</li>
<li>侧边栏</li>
<li>侧边栏</li>
</ul>
</body>
</html>