how to remove gaps in table cells after change doctype to strict

No Comments

IF you have sliced your website using photoshop and export as “html with images”.
and then you changed doctype from:
<!DOCTYPE html PUBLIC “-//W3C//DTD html 4.01 Transitional//EN”>
to:
<!DOCTYPE html PUBLIC “-//W3C//DTD html 4.01//EN” “http://www.w3.org/TR/html4/strict.dtd”>

You will probably see gaps in table cells. These can be removed by two ways.

More

The importance of the !important CSS declaration

No Comments

The !important declaration has been valid since CSS1 but it seems to have acquired a bad reputation over the years. Even if the !important declaration should be used with caution, it’s a very useful and powerful expression that much deserves its place in our CSS world. This article offers a guide to what the declaration is, what it does and how you should use it

More