If you're new here, you may want to subscribe to my RSS feed. Thanks for visiting!
No matter what you are choosing for your design to look like at the end of your development, it is impossible not to add few CSS declaration every time. These are essential for development.
body {padding:0;}
It removes the gap around the edges.
body {background:#fff;} (or whatever color is appropriate)
It is being used just to be granted that white has been choose as default for background , for each browser’s.
form {padding:0;margin:0;}
The form is important not th input.
ul {margin:0;padding:0;}
Padding and margin are set to o.
a img {border:0;}
For margin you will add it if necessary.
