Forums

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

Home Forums Other W3C CSS Validation Errors

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

    I have a few errors that I am not sure of the cause:

    a attempt to find a semi-colon before the property name. add it

    Here is the CSS:

    a {
    text-decoration: none;
    color: #666;
    transition: 0.3s all ease-in-out 0s;
    -webkit-transform: transition: 0.3s all ease-in-out 0s;
    -o-transform: transition: 0.3s all ease-in-out 0s;
    outline: 0;
    }

    a:hover {
    color: #43AFDE;
    transition: 0.3s all ease-in-out 0s;
    -webkit-transform: transition: 0.3s all ease-in-out 0s;
    outline: 0;
    }

    a:active {
    color: #43AFDE;
    transition: 0.3s all ease-in-out 0s;
    -webkit-transform: transition: 0.3s all ease-in-out 0s;
    outline: 0;
    }

    Also these:

    Property -webkit-box-sizing is an unknown vendor extension
    Property -moz-box-sizing is an unknown vendor extension
    Property -o-transition is an unknown vendor extension

    Are these okay to ignore?

    #193031
    Shikkediel
    Participant

    And I wouldn’t worry about the warnings. But most of -moz- and -o- prefixes really aren’t needed anymore anyway.

    #193071
    rebeccaluff
    Participant

    Thanks very much!!

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