backface-visibility:hidden bug in chrome

后端 未结 3 943
囚心锁ツ
囚心锁ツ 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:45

    OK, I have now fixed the same problem with Chrome v75.0 when having an element and its child tags (p, img) with

    backface-visibility: hidden;
    

    Chrome displays only the content of the children. I use a jQuery plugin to flip some content. I fixed it by using

    .not('p, img, br, strong')
    

    to avoid to add the backface-visibility on childs.

    Maybe it's like double hidden means show?! like in math - and - is + :-)

提交回复
热议问题