Forums

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

Home Forums CSS [Solved] CSS3 Button with Text Rotate (IE 11 Issue) Reply To: [Solved] CSS3 Button with Text Rotate (IE 11 Issue)

#157693
Ed
Participant

I’m stabbing in the dark here, but in your CodePen you never provide a unprefixed transform rule for the button.

IE11 follows to the W3C specification for this property, so “can’t see” the -ms-transform rule (which is only used whilst browser implementation of the spec is unfinished). If you add transform: rotate(-90deg); just before .c2c_btn .c2c closes, it might work.

You should do that all the time anyway. For this exact reason.