Jump to content

judgem

Members
  • Posts

    2
  • Joined

  • Last visited

Posts posted by judgem

  1. I used to encounter that problem as well with perfect alignment in both browsers. Here's what I used to solve that problem...For IE, use an underscore before the value, like this "_margin-left:100px;"And for FF, the regular non underscored value "margin-left:99px;"I just include both values, and make the appropriate pixel adjustment. And IE reads the underscored value, while FF reads the other.
    This option does the trick indeed but would not validate as valid CSS. Another way of getting the same result which does validate is add this to your stylesheet:* html #box6{ margin-left: 100px;}Again only IE will read this.Good luck!
×
×
  • Create New...