Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 ui-select 来显示状态列表。我的状态列表大于 ui-select 下拉高度。如何在 ui-select 下拉列表中显示滚动条,以便用户知道列表中有更多项目?
添加下面的css代码
.ui-select-choices-content{ overflow-y:scroll !important; &::-webkit-scrollbar { width: 8px !important; } &::-webkit-scrollbar-thumb { border-radius: 7px; -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3); background-color: red; } }