Finding Error in My Css by NETBEANS

Asked

Viewed 670 times

1

My code is presenting the following problem in css (IMAGE ERROR MESSAGE)inserir a descrição da imagem aqui

error code does not interfere and I can run my site normally even with css error.

@supports ((-webkit-transform: translate3d(0, 0, 0)) or (transform: translate3d(0, 0, 0))) {
  .carousel-item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    transition: -webkit-transform 0.6s ease-in-out;
    -o-transition: -o-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-perspective: 1000px;
            perspective: 1000px;
  }
}
  • 1

    What problem? You just posted a CSS code and an image that has exactly the same code.

  • yes it is indicating error in the first line of the code that is in red, and I posted the code if not to see in the image..

  • Position the mouse on the highlighted code, some message appears?

  • Unexpected token located LPAREN Unexpected token located WS Unexpected token located LPAREN Unexpected token located NUMBER ----

  • Edit the question and add this information. Take advantage and put which editor you are using and whether the code works or not, despite this message.

  • Is the whole css too big? If not please post it... I believe the error is before that line

  • Hi Anderson! I checked, there is no error in the code itself, the problem is that netbeans does not recognize this bootstrap class. Testing on Notepad++ showed no error. Thank you for the answer

Show 2 more comments
No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.