Page 1 of 1

Percentage Problem.

Posted: Fri Aug 12, 2011 8:28 am
by ThatPerson
I am creating a website in the style of Ubuntu Unity (Google it if you do not know) and I am trying to recreate the laucher. This is 100% of the screen height, except 24px at the top. is there a way that I could get 100% minus 24px?

Re: Percentage Problem.

Posted: Fri Aug 12, 2011 11:46 am
by pickle
position:absolute;
top:24px;
bottom:0;
width:100%;

Re: Percentage Problem.

Posted: Sat Aug 13, 2011 2:39 am
by ThatPerson
Ah, thanks. It works now.