HTML/CSS–Creating a banner/header

You have a type-o:

its: height: 200x;

and it should be: height: 200px; also check the image url; it should be in the same directory it seems.

Also, dont use ‘px’ at null (aka ‘0’) values. 0px, 0em, 0% is still 0. 🙂

top: 0px;

is the same with:

top: 0;

Good Luck!

Leave a Comment