CSS3 Transform affecting other elements with chrome/safari

前端 未结 4 1244
北荒
北荒 2020-11-29 09:00

I have an issue where my css3 transformations are effecting other elements on the page and even causing them to sort of flicker. I saw another post about this but they didn\

4条回答
  •  失恋的感觉
    2020-11-29 09:09

    Working solution for flickering elements during transition in Chrome is to set up CSS for parent node:

    -webkit-backface-visibility: hidden;

提交回复
热议问题