I am using Bootstrap 3. I would like a navbar with only the brand in it. No other links or anything else. And I want the brand to be in the center. How can I accomplish t
If you have no other links, then there is no use for navbar-header....
HTML:
Navbar Brand ..... CSS: .navbar-brand { float: none; } However, if you do want other links here's a very effective approach that allows that: https://stackoverflow.com/a/34149840/3123861 0 讨论(0) 查看其它8个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复
CSS:
.navbar-brand { float: none; }
However, if you do want other links here's a very effective approach that allows that: https://stackoverflow.com/a/34149840/3123861