1
My code is presenting the following problem in css (IMAGE ERROR MESSAGE)
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;
}
}
What problem? You just posted a CSS code and an image that has exactly the same code.
– Woss
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..
– who who who who
Position the mouse on the highlighted code, some message appears?
– Woss
Unexpected token located LPAREN Unexpected token located WS Unexpected token located LPAREN Unexpected token located NUMBER ----
– who who who who
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.
– Woss
Is the whole css too big? If not please post it... I believe the error is before that line
– Anderson Henrique
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
– who who who who