Hi,
You have to test at every time, you find the relevant tags that is suitable for all the browsers.
Important notes:
1) Try to use Padding and margin for alignment. If you find that padding does't support well by Firefox, use Margin. But, note that margin is not well supported by IE. So, here is the trick...
BODY
{
margin-top:10px; /* Comaptible for FireFox */
}
* html body
{
margin-top:10px /* compatible for IE and only recognized by IE, not Firefox */
}
2) Try to avoid using tables as much as possible.
3) If you have any hidden fields, IE creates some whitespace for this, But, it is not visible. But, Firefox does't make any changes. So, Take care of hidden fields when the white space is important in concern with the designing.
|