I have a problem positioning my title inside a div with grid classes (from bootstrap). Here is my very simple code:
<body class="" >
<div class="container " id="main">
<div class="row " >
<div class="col-xs-3 " >
</div> <!-- /col-xs-3 -->
<div class="col-xs-9 " >
<h3 class="">Benvenuto</h3>
</div> <!-- /col-xs-9 -->
</div> <!-- /Row -->
</div> <!-- /container -->
</body>
There is no custom CSS added.
Here is my chrome output:
And here is my ie7 output:
As you con see using chrome the h3 si put inside the bootstrap div, while using ie7 is put under it.
This is my test website, if you need to check it out.
Do you know how to solve it?
Thanks!