html - How to erase button separator in btn-group? -
This line needs to be removed, which is mentioned on the image.
It's a button separator, and I do not need them anymore, how to delete it?
The image is here:
The class structure is:
& lt; Nav class = "navbar navbar-default" & gt; & Lt; Div class = "container-liquid" & gt; & Lt; Div class = "navbar-header btn-group" & gt; & Lt; Button type = "button" class = "btn infection" id = "about" & gt; About me & lt; / Button & gt; & Lt; Button type = "button" class = "btn infection" id = "task" & gt; My work & lt; / Button & gt; & Lt; Button type = "button" class = "btn infection" id = "contact" & gt; Contact & lt; / Button & gt; & Lt; / Div & gt; & Lt; / Div & gt; & Lt; / Neo & gt;
You have to look at your CSS rules, because there are no basic bootstrap lines buttons: .
By the way, if you see the default bootstrap .btn
style definition, then you can only see the transparency limit:
.btn { Border: 1px solid transparent; }
The inspection styles with the Developer Tools in your browser can help you with the problem.
Comments
Post a Comment