CSS transform is not working in Edge

后端 未结 3 722
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-11 18:03

I am stuck at the following problem.

On this site that I created, I have a gallery which is located on the bottom of the page. If I hover over the thumbs, they fly a

3条回答
  •  不思量自难忘°
    2021-01-11 18:47

    Ed. by another user: This answer does not apply to the Microsoft Edge browser.

    You need to write the standard transition and transform properties, and then the -ms prefix for microsoft internet explorer:

     .selector {
         -webkit-transform: scale(); /* android, safari, chrome */
         -moz-transform: scale(); /* old firefox */
         -o-transform: scale(); /* old opera */
         -ms-transform: scale(); /* old IE */
         transform: scale(); /*standard */
      }
    

    The same in transition property. Your solution is to write the standard.

提交回复
热议问题