What would be the best way of lining up the Back text with the Booking heading?
HTML
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-brand">Booking</div>
<div>Back</div>
</div>
</nav>
CSS
.navbar {
background-color: #0088CC;
padding-left: 0em !important;
padding-right: 0em !important;
}
.navbar-brand {
color: #fff !important;
padding-left: 0em !important;
padding-right: 0em !important;
text-align: center;
margin: 0 auto !important;
width: 100%;
display: inline !important;
}
nav > .container {
width: 100%;
}