Is there a way I can center the brand name in the nav-bar
My current code is like
5条回答 隐瞒了意图╮ (楼主) 2020-12-15 11:36 Couple ways to center, you might have to try each: Setting auto-margins: .brand { margin-left: auto; margin-right: auto; } Or using a known width (200px example) of an absolute positioned element: .brand { left: 50%; margin-left: -100px; } 0 讨论(0) 查看其它5个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复
Couple ways to center, you might have to try each:
Setting auto-margins:
.brand { margin-left: auto; margin-right: auto; }
Or using a known width (200px example) of an absolute positioned element:
.brand { left: 50%; margin-left: -100px; }