Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make wrapper of full height of page?

please visit http://appkify.com, its wordpress site.

When you click on Categories tab, the height of wrapper decreases to content height. Is theire any way to make it full height?

I've tried adding following property but it then making body background to come as a border for all posts.

html,body, #wrapper {
  height:100%;
}
like image 544
Nikhil Phirke Avatar asked Nov 13 '22 14:11

Nikhil Phirke


1 Answers

Wrapper has automatic height. It get's created. And as you write the contents to it gets bigger. However by putting the height as 100%, when the overflow occurs while writing the wrapper it will get scroll bar on your webpage rather then on a browser.

like image 183
Aakash Avatar answered Nov 15 '22 05:11

Aakash