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 -

Python Tornado package error when running server -

Qt QGraphicsScene is not accessable from QGraphicsView (on Qt 5.6.1) -