我有一个网页,其中有可滚动的内容。此内容包含在#content 中,它以页面为中心。现在我想要一个导航栏出现在内容左侧 50 像素处。这个栏应该有一个固定的位置(不应该滚动)。
这是我到目前为止所尝试的:
#nav {
position: fixed;
top: 50%;
margin-top:-200px;
left:15%;
background: #FFF;
width: 100px;
height:400px;
border-radius: 50px;
}
#content {
position: relative;
width: 800px;
margin: 0px auto;
padding-top: 100px;
}
这显然不是我想要的,因为现在导航距离屏幕左侧 15%。
这是一张图片来说明我想要实现的目标。