html - Bootstrap container-fluid not responsive after certain width -
i using bootstrap 3.3.5 grid system.
html (not sure it'll help)
<body> <div class="container-fluid containerresize"> <header class="row"> ... </header> <main class="row"> ... </main> </div> </body>
css (for .containerresize
)
.containerresize { height: 100%; padding-right: 0; }
this error temperamental.
sometimes container resize down whatever size lot of time when resize width below 970px, container not longer resize , stay @ 970px. interfering responsive design components within container rely on it's width. i'm running in chrome. i've had suggestion might chrome related issue?
any appreciated.
edit
it works in firefox
Comments
Post a Comment