gpt4 book ai didi

html - 滚动和边框 CSS 问题

转载 作者:行者123 更新时间:2023-11-28 16:22:03 25 4
gpt4 key购买 nike

我的菜单快吃完了。但是我有两个问题。

  1. 我无法在列表的最后一项上添加 1px 实线边框 #fff。
  2. 我需要删除左侧的垂直滚动条。

这是我的 CSS:

#nav li ul {
opacity: 0;
height: 0px;
}

#nav li a {
font-style: normal;
font-weight: 400;
position: relative;
display: block;
padding: 16px 25px;
color: #fff;
white-space: nowrap;
z-index: 2;
text-decoration: none
}

#nav li a:hover {
color: #c0392b;
background-color: #ecf0f1;
}



#nav ul li {
background-color: #e74c3c;
color: #fff;
display: block;
list-style: disc;
}

#nav li:first-child {
border-top: 1px solid #fff;
}

#nav ul {
margin: 0;
padding: 0;
}



#nav .fa { margin: 0px 17px 0px 0px; }

.logo {
width: 100%;
padding: 21px;
margin-bottom: 20px;
box-sizing: border-box;
}

#logo{
color: #fff;
font-size: 30px;
font-style: normal;
}

.sidebar-icon {
position: relative;
float: right;
text-align: center;
line-height: 1;
font-size: 25px;
padding: 6px 8px;
color: #fff;
}

.disp {
opacity: 1!important;
height:auto!important;
transition: height 100ms ease-in-out;
transition-delay: 300ms;
}

#nav li span:first-child {
margin-left: 32px;
}

阿斯达斯达斯达斯达斯达斯达斯达萨

最佳答案

好吧,首先删除这个:

#nav li:not(:last-child) {
border-bottom: 1px solid #fff;
}

为所有 li 甚至最后一个添加边框:

#nav li {
border-bottom: 1px solid #fff;
}

要删除滚动,请执行以下操作:

JS:

$('body, html').toggleClass('OverflowHidden');

CSS:

.OverflowHidden {
overflow: auto;
}

要删除双边框,请使用:

#nav li ul li:last-child {
border-bottom: none!important;
}

jsFiddle

关于html - 滚动和边框 CSS 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36626473/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com