Percentage Problem.
Moderator: General Moderators
-
ThatPerson
- Forum Commoner
- Posts: 50
- Joined: Wed Aug 03, 2011 1:57 am
Percentage Problem.
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.
position:absolute;
top:24px;
bottom:0;
width:100%;
top:24px;
bottom:0;
width:100%;
Real programmers don't comment their code. If it was hard to write, it should be hard to understand.
-
ThatPerson
- Forum Commoner
- Posts: 50
- Joined: Wed Aug 03, 2011 1:57 am
Re: Percentage Problem.
Ah, thanks. It works now.