I'm trying to centre a div in a page, horizontally & vertically. This is acheived, but there is some left and right padding, in chrome. How to remove this. Works fine in firefox.
MyStyle.css :
html, body
{
  height:100%;
  margin:0;
  padding:0;
}
.container-fluid{
  height:100%;
  display:table;
  width: 100%;
  padding:0;  
}
.row-fluid 
{
  height: 100%; 
  display:table-cell; 
  vertical-align: middle;  
}
.centering {
  float:none;
  margin:0 auto;
}
// bootstrap css for .container-fluid
{
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
HTML :
<div class="container-fluid">
        <div class="row-fluid" style="background-color: blue">
            <div class="centering text-center col-lg-1" 
                 style="background-color: green">
                Yeah I'm centered
            </div>
        </div>
    </div>
The blue color does not fill up the page in chrome, there is padding to the right & left.
 
     
    