Comment and HELP with my portfolio!

Here is my portfolio page… http://codepen.io/bartonyoung/full/MbKbbx/ Disregard the broken images. Those are assets that I added while creating this page in my own text editor. I am overall pleased with the site, however I don’t understand why every main content div ( DESIGN, DEVELOP, etc.) wont take up the entire size of the screen. I need to get better at writing clean CSS. Any help would be apprecitaed.

Hi,

you can force your div’s to take up the full screen like so:

#design {
  min-height: 100vh;
}

100 being a percentage of viewport height.

Cheers

mark

Thanks Mark,

That worked perfectly.

-Bart