Forums

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

Home Forums CSS Safari transition problem

  • This topic is empty.
Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #44640
    nejcm
    Member

    Hello. I came across a problem in Safari. In every other browser it works fine but Safari has a problem. I’m using transitions on an arrow. Here is the html and part of CSS. I’m changing the padding-right on hover

    HTML:

    Read more…

    CSS:

    .readMore_{
    display:inline-block;
    -webkit-transition:padding 0.08s ease-in-out;
    -moz-transition:padding 0.08s ease-in-out;
    -ms-transition:padding 0.08s ease-in-out;
    -o-transition:padding 0.08s ease-in-out;
    transition:padding 0.08s ease-in-out;
    -webkit-backface-visibility: hidden;
    -webkit-perspective:1000;
    }
    .readMore:hover .readMore_{
    background-color:#0b83aa;
    padding-right:22px;
    }

    Here is the picture of the problem:
    [http://s21.postimg.org/8afp9rxvr/transition.png](http://s21.postimg.org/8afp9rxvr/transition.png “Picture”)

    Thanks for the help!

    #134499
    nejcm
    Member

    :)

    #134506
    Paulie_D
    Member

    Is this solved?

    Also, there is not enough CSS there for us to created a Codepen.

    …and there is no such setting as

    position:inline-block;

    #134591
    nejcm
    Member

    Sorry my mistake. I will post the whole CSS. I meant display :) I made a code pen.
    http://cdpn.io/fAbuc

    #134631
    nejcm
    Member

    I see now that the codepen one works OK in safari. So it has to be the problem in one of the inherited styles. I’ll check.

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