Home › Forums › CSS › Simple CSS Being Rendered Differently in Chrome & Firefox › Re: Simple CSS Being Rendered Differently in Chrome & Firefox
March 9, 2012 at 7:46 pm
#98681
Participant
I guess because you don’t define a left position for #sidebar, you leave it open for interpretation. Seems like Webkit defines the left position the same as the original location of it’s parent #sidebar-wrap (and not follow the new position that is controlled by it’s relative move), whereas Mozilla “follows” the location of its parent.
@karlpcrowley ‘s solution works because it takes the position:relative out of the equation and that’s where both browser types disagree.
I think :)