Forums

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

Home Forums CSS [Solved] Transformation: skew not working on google chrome

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

    Hi my transform: skew(-20deg, 0deg); doesn’t seem to work on Google chrome works fine on fire fox very strange http://www.carrarawebsitesolutions.com.au is where you can text view.

    .navbar-brand {
         background: none repeat scroll 0 0 #E93F33;
         color: #FFFFFF;
         font-size: 18px;
         font-weight: 700;
         margin-left: 10px;
         text-shadow: none;
         transform: skew(-20deg, 0deg);
    }
    
    #159170
    wolfgang1983
    Participant

    I found out why need to do this

    -webkit-transform: skew(-20deg, 0deg);
    -moz-transform:skew(-20deg, 0deg);
    -o-transform:skew(-20deg, 0deg);
    -ms-transform:skew(-20deg, 0deg);
    transform: skew(-20deg, 0deg);

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