I want to have a layout having three container: left container , central container and right container in the _layout page.I tried with the following code but it dosen't respond with the expected result.
<body>
<header>
@Html.Partial("_header")
</header>
<div class="row">
<div class="col-lg-4 well">
hello there lcont
@RenderBody()
</div>
<div class="col-lg-4 well" >
Central container
</div>
<div class="col-lg-4 well ">
right container
</div>
</div>
<footer>
<div class="content-wrapper">
<div class="float-left">
<p>© @DateTime.Now.Year - My ASP.NET MVC Application</p>
</div>
</div>
</footer>
@Scripts.Render("~/bundles/jquery")
@RenderSection("scripts", required: false)
</body>
Instead of getting three divs side by side in a single row i get three different rows.

EDIT
I changed col-lg-4 to col-md-4 and it worked as it is suposed to.Any explanation i am confused.
<divs>are block elements, so that's the default. You need to style the elements to get the layout out you want. Refer simple fiddle here using floats and widthcol-lg-4and the other 2 havelg-col-4Is that correct?