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.
我正在玩 Bootstrap 手风琴,似乎无法删除标题打开时显示的下划线/边框。
手风琴标题样式似乎没有指定边框,我无法使用元素检查器找到它的来源。
黄色突出显示的线是我感兴趣的(我可以轻松覆盖其他边框。
有小费吗?
.accordion-inner(在标题下方,封装手风琴内容)具有border-top指定的属性。这可能是您要修改/删除的内容。以下 CSS 片段将删除您引用的边框。
.accordion-inner
border-top
.accordion-inner { border-top: 0 none; }