Forums

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

Home Forums CSS Does prefix order matter?

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #41969
    Rugg
    Participant

    Does the order of css3 vendor prefixes matter or provide a different output if arranged differently?

    **Example:**


    transform: rotate(30deg);
    -ms-transform: rotate(30deg); /* IE 9 */
    -webkit-transform: rotate(30deg); /* Safari and Chrome */
    -o-transform: rotate(30deg); /* Opera */
    -moz-transform: rotate(30deg); /* Firefox */

    Versus


    -ms-transform: rotate(30deg); /* IE 9 */
    -o-transform: rotate(30deg); /* Opera */
    -moz-transform: rotate(30deg); /* Firefox */
    -webkit-transform: rotate(30deg); /* Safari and Chrome */
    transform: rotate(30deg);

    #120896
    jurotek
    Participant

    @Rugg, [Here…](https://css-tricks.com/ordering-css3-properties/ “”) is some read on it

    #120897
    TheDoc
    Member

    It’s important that the non-prefix version comes last.

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