I have the following code in an html file:
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container-fluid">
<a href="index.html" class="brand">Hello Bootstrap</a>
<p class="navbar-text pull-right">This is first notice.</p><br/>
<p class="navbar-text pull-right">This is second notice. </p>
</div>
</div>
</div>
I get the output as follows:

Please note that “This second notification” is not correctly aligned with the line above it. I am trying to get two notifications aligned correctly with each other.
I also tried removing <br/>from the above code, but with this I get the following output:

Can someone tell me what I am doing wrong?
JSFiddle: http://jsfiddle.net/N6vGZ/23/
source
share