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 -

reflection - How to access the object-members of an object declaration in kotlin -

php - Doctrine Query Builder Error on Join: [Syntax Error] line 0, col 87: Error: Expected Literal, got 'JOIN' -