I have the following in pure HTML and it looks like I want it to.
------------ :: Welcome To My Website :: ------------ |
I want to move to CSS but can not figure out how to make it look right.
I have the following css file
/* Body Sets the Width 720 that the table used to */ body { width: 720px; margin: 0px; padding: 0px; } /* Defines the header width and location */ div#header { width: 720px; height: 70px; background: rgb(192,192,192); font-size: 160%; text-align: center; vertical-align: middle; }
and the following html
Home ------------ :: Welcome To My Website :: ------------
What am I doing wrong?