html - Resize WebPage to view all Elements without ScrollBars -


how can make contents in web page automatically resized @ each resize level can see contents of webpage @ once without using scroll-bars. there way bootstrap too?

if create css class , add on of elements should work:

css:

.height-responsive {     width: auto;     display:block;     height: 100%; } 

html:

    <body>         <div class="height-responsive">           //your code        </div>     </body> 

Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -