This question came out of another question that I had about bootstrap. Is it bad to have a container within a container? I did not realize that in the master page generated in asp.net mvc that it had
<div class="container body-content">
@RenderBody()
<div class="navbar navbar-default navbar-fixed-bottom">
<div class="container">
<p class="navbar-text">© @DateTime.Now.Year - My ASP.NET Application</p>
</div>
</div>
</div>
a container class already set. So I did in my views
<div class="container">my other markup here </div>
To me it does not really seem like a bad thing to have multiple containers(though in my case I guess it was redundant) but if you read "bto.rdz" comments in my other question he states he gets strange behavior doing this.
I been doing bootstrap for a few hours now so I can't verify if it can cause problems, or if it is bad practice as well but just looking at the code that was generated for me in my master page I see that the Navbar has it's own container what is in a container.