I just used @simplymeasured to analyze a Facebook Fan Page in Excel. http://t.co/m1cL5rXC via Twitter
princessdesign.net
Zen
Last post

Reading material

IE and Firefox margin problem

18. Jan 06 | Design Tips & Tricks | Comments Off

Problem: In a div tag you have another div tag and you wish to apply left margin. Let’s say you set it to 35px. You check it in IE and looks great. Then you go to Firefox and needless to say it’s obvious you would need to set it at a much higher number.

Solution:

For IE
#Author2{
margin-left: 35px;
}

For Firefox
#mainAuthorBox>#Author2 {
margin-left: 70px;
}

Clear