backface-visibility:hidden bug in chrome

后端 未结 3 922
囚心锁ツ
囚心锁ツ 2021-01-19 11:05

I\'ve found a bug in Chrome on windows Vista: CSS3 backface-visibility:hidden doesn\'t work. Here is an example: jsFiddle

This works fine on chrome in windows 7 and

3条回答
  •  遥遥无期
    2021-01-19 11:33

    I had the same issue, where "-webkit-backface-visibility: hidden" was actually needed and what worked for me was to first set it to "visible" and then "hidden".

    -webkit-backface-visibility: visible;
    -webkit-backface-visibility: hidden;
    

    I hope that this will help you.

提交回复
热议问题