【发布时间】:2022-01-10 14:54:03
【问题描述】:
我需要有关此边栏的帮助。它不想被放置在顶部边缘的开始处。 (它从顶部突出了几毫米)看起来像:enter image description here。
CSS CODE:
https://pastebin.com/RUmsRkYw
HTML CODE:
https://pastebin.com/GsLHx15d
【问题讨论】:
标签: html css browser navigation sidebar
我需要有关此边栏的帮助。它不想被放置在顶部边缘的开始处。 (它从顶部突出了几毫米)看起来像:enter image description here。
CSS CODE:
https://pastebin.com/RUmsRkYw
HTML CODE:
https://pastebin.com/GsLHx15d
【问题讨论】:
标签: html css browser navigation sidebar
我检查了你的代码。您必须添加顶部和底部
.sidebar_container{
position: fixed;
width: 220px;
height: 100%;
left: 0;
bottom: 0;
top: 0;
overflow-x: hidden;
overflow-y: auto;
background: #303030;
color: #fff;
}
【讨论】: