Forums

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

Home Forums CSS IE 9 Issue

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #144925
    Manojnaanak
    Participant

    Hello Everyone,

    I have a prob regarding ie 9 my transform rotate not working in ie 9 .

    this is my css:

    <h1>Message9 .messageText</h1>

    {
    color:#ff0000;
    font-weight:bold;
    padding-top: 40px;
    text-align: center;
    box-sizing:border-box;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    height:130px;
    font-family: ‘Reenie Beanie’, cursive;
    font-size:27px;
    /* Safari /
    -webkit-transform: rotate(-2deg);
    /
    Firefox /
    -moz-transform: rotate(-2deg);
    /
    IE /
    -ms-transform: rotate(-2deg);
    /
    Opera /
    -o-transform: rotate(-2deg);
    /
    Internet Explorer */
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);}

    #145335
    daffy58
    Participant

    CSS3 rotate should work in IE9 with this prefix

    -ms-transform: rotate(-2deg);

    no need to use filter.

Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘CSS’ is closed to new topics and replies.