简体   繁体   English

您如何使 Bootstrap 导航栏徽标和菜单分别在左侧和右侧具有“填充”?

[英]How do you make the Bootstrap navbar logo and menu have "padding" on the left and right, respectively?

Right now, the logo and menu are aligned to the far-left and far-right of the screen on my website.现在,徽标和菜单与我网站上屏幕的最左侧和最右侧对齐。 I would like them to stay a set percentage distance (as opposed to absolute distance) away from the extremes so that it works well even when you resize the page.我希望他们与极端值保持一定的百分比距离(而不是绝对距离),以便即使在调整页面大小时它也能正常工作。

Thanks.谢谢。

I think you want to have your logo and menu some space from the left & right of the screen, if it is true then you can give padding to the left & right of the navbar itself it will automatically push the logo and menu towards the middle of the screen here is the code you can follow.我认为您希望您的徽标和菜单从屏幕的左右两侧留出一些空间,如果是这样,那么您可以在导航栏本身的左右两侧进行填充,它会自动将徽标和菜单推向中间这里的屏幕是您可以遵循的代码。

<nav class="navbar">
  // YOUR CODE GOES HERE
</nav>

.navbar{
  padding: 0 20px //insted of 20px you can give it in X% as well.
}

and, If I miss understood the question please let me know.而且,如果我错过了理解这个问题,请告诉我。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 左侧导航栏项目的左侧的Bootstrap 3导航栏折叠菜单 - Bootstrap 3 Navbar Collapse menu at Left for left and right navbar items 您如何在左侧滚动菜单,而右侧滚动菜单 - How do you make a menu on the left that stays while the right side scrolls 如何将引导导航栏徽标的顺序从左更改为中心 - How to change the order of bootstrap navbar Logo from left to center 如何使引导导航栏的背景透明? - How do you make the background of a bootstrap navbar transparent? 如何在小屏幕上使引导导航栏在Chrome中从右向左平滑切换? - How to make bootstrap navbar smoothly toggle in chrome from right to left on small screens? 如何使用jQuery左右滚动2个div(页面)? - How do you make a 2 divs(pages) scroll left and right with jQuery? 使用bootstrap 3,你如何拥有一个完全不同的移动导航栏,而不是响应? - Using bootstrap 3, how do you have a completely different navbar for mobile rather than responsive? Bootstrap-滚动时具有动态内容的粘性导航栏,粘性侧边栏(左右) - Bootstrap - sticky navbar, sticky sidebars (left and right) with dynamic content as you scroll 如何制作可更新的 NavBar? - How do you make an updatable NavBar? 如何使导航栏在点击时向左延伸? [Twitter引导程序3] - How to make a navbar extend left on click? [Twitter bootstrap 3]
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM