## Placement
-Navbars can be statically placed (their default behavior), or fixed to the top or bottom of the viewport.
+Navbars can be statically placed (their default behavior), static without rounded corners, or fixed to the top or bottom of the viewport.
+
+{% example html %}
+<nav class="navbar navbar-full navbar-light bg-faded">
+ <a class="navbar-brand" href="#">Full width</a>
+</nav>
+{% endexample %}
{% example html %}
<nav class="navbar navbar-fixed-top navbar-light bg-faded">
// Display the navbar across the entirety of the page or fixed it to the top or
// bottom of the page.
-// Static top (unfixed, but 100% wide) navbar
-.navbar-static-top {
+// A static, full width modifier with no rounded corners.
+.navbar-full {
z-index: $zindex-navbar;
@include media-breakpoint-up(sm) {