Chris Akins wrote: > www.springfieldmo.gov/egov/cityclerk/minutes_testHtags.html > > Everything is fine except for the <h2 class="description"> items. > These are the left hand, called out headers. They are supposed to > line up vertically with the text to the right of them, which they do > everywhere but IE6 (don't have IE7 to test). Firefox, Safari on Mac > are great as well as Firefox on PC. > > I'm using a top margin unit of 1 em on those elements to push them > into place, but in IE6 this unit lets them move around with text > re-sizing. That doesn't happen in the other browsers.
One part of the problem in IE/win comes from the "em font-resizing bug"... <http://www.gunlaug.no/contents/wd_additions_13.html> ...and the other part from the fact that defaults are not identical across browser-land. If you add... html {font-size: 100%;} ...to fix that IE/win bug, and thereafter declare suitable *and* identical margin-top on both the .description and the p, the line-up will be near perfect in all browsers - including IE/win. regards Georg -- http://www.gunlaug.no ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies -- http://css-discuss.org/policies.html Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
