侧边栏顶部位置的问题
Problem with the top position of the sidebar
我需要有关此边栏的帮助。它不想放在顶部边缘的开始处。 (它从顶部突出几毫米)看起来像:enter image description here.
CSS CODE:
https://pastebin.com/RUmsRkYw
HTML CODE:
https://pastebin.com/GsLHx15d
我检查了你的代码。你必须添加顶部和底部
.sidebar_container{
position: fixed;
width: 220px;
height: 100%;
left: 0;
bottom: 0;
top: 0;
overflow-x: hidden;
overflow-y: auto;
background: #303030;
color: #fff;
}
我需要有关此边栏的帮助。它不想放在顶部边缘的开始处。 (它从顶部突出几毫米)看起来像:enter image description here.
CSS CODE:
https://pastebin.com/RUmsRkYw
HTML CODE:
https://pastebin.com/GsLHx15d
我检查了你的代码。你必须添加顶部和底部
.sidebar_container{
position: fixed;
width: 220px;
height: 100%;
left: 0;
bottom: 0;
top: 0;
overflow-x: hidden;
overflow-y: auto;
background: #303030;
color: #fff;
}