Drupal website specialists. Call us about your project on (02) 8006 3402

CSS and HTML must-haves

Posted 19/July/2008 by neubreed

Use the following doctype:

 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "https://www.w3.org/TR/html4/strict.dtd">

In your css, put the following style for taking off al those pesky unneeded padding and margin values:

*{
       margin: 0;
       padding: 0;
}