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 -

What is happening when Matlab is starting a "parallel pool"? -

php - Cannot override Laravel Spark authentication with own implementation -