Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS SVG CSS3 interaction only works in Firefox? Reply To: SVG CSS3 interaction only works in Firefox?

#147408
Paulie_D
Member

No Idea if this is related but could Chrome be borking because you are apply the effects to a sub-id of an Id…if you see what I mean?

#circleLeft:hover #circleLeftText {
  -webkit-transform-origin: 135px 460px 0;
  -moz-transform-origin: 135px 460px 0;
  -ms-transform-origin: 135px 460px 0;
  /* IE 10+ */

  -o-transform-origin: 135px 460px 0;
  transform-origin: 135px 460px 0;
  transform: scale(1.5);
}