So i have this question. I just finished my css document and i put 290 padding on my content so it would reach the bottom. Is that allowed?
#divAbout{
width: 960px;
background: #333;
padding-top: 60px;
padding-bottom: 295px;
}
Printable View
So i have this question. I just finished my css document and i put 290 padding on my content so it would reach the bottom. Is that allowed?
#divAbout{
width: 960px;
background: #333;
padding-top: 60px;
padding-bottom: 295px;
}
First of all, the reason no one helped you is your title, never type "PLEASE HELP!" or "NEED HELP" etc.
Second, for the work you are doing you need to use margin not padding.
The image will help you understand. When you increase margin you push box away from other page and when you use padding you push content inside of box away from box itself.
Attachment 15121