我现在开始使用引导程序并且非常喜欢它,但现在出现了问题。
I made an adapted navbar and when a tab is selected, there is a spotted border that I dont like. 如何防止此边框(CSS)?
我现在开始使用引导程序并且非常喜欢它,但现在出现了问题。
I made an adapted navbar and when a tab is selected, there is a spotted border that I dont like. 如何防止此边框(CSS)?
你能添加一些代码吗?我认为在您的 CSS 中的某处您会发现类似的内容: 将border: 1px dotted #ccc;
其更改为:border: none;
根据您拥有的类/ID,它将类似于以下内容:
border:none;
我将冒险并假设您的选项卡的 HTML 是 . 如果是这样,请确保在所有状态(CSS psuedo-classes)中明确定义所需的边框,特别是 :active
a:link {border-width:0;} /* unvisited link */
a:visited {border-width:0;} /* visited link */
a:hover {border-width:0;} /* mouse over link */
a:active {border-width:0;} /* selected link */