css - div at incorrect position on Firefox

2019-07-30 12:48发布

问题:

I'm making a card with css animations, and on Chrome/Safari it works great, but on Firefox one of the divs is getting out of its position. Open this fiddle on Chrome/Safari and on Firefox to see what is going on. Does anybody know a fix/workarround to this?

回答1:

I managed to get Firefox to play nicer by adding

.perspective {
    ...
    position: relative;
}

That seems to specify the object to which the left side is the absolutely positioned. It must differ by default between Webkit and Firefox.

Unfortunately it looks like there's a timing issue with it now, but at least you're one step closer!

Cool looking effect nonetheless XD!