I'm getting several warnings in netbeans in my css stylesheet from code copied from bootstrap
.carousel-inner>.item {
-webkit-transition: -webkit-transform .6s ease-in-out;
-o-transition: -o-transform .6s ease-in-out;
transition: transform .6s ease-in-out;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-perspective: 1000px;
perspective: 1000px;
}
.btn {
display: inline-block;
padding: 6px 12px;
margin-bottom: 0;
font-size: 14px;
font-weight: 400;
line-height: 1.42857143;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-image: none;
border: 1px solid transparent;
border-radius: 4px
}
The touch-action, and user-select properties (the ones AFTER the css prefix) are showing the warning underlining the property with the "Unknown property touch-action" warning
And for the perspective property is underlining the value "1000px" (also after the ones with te css prefix).
I want to know how to rewrite the property it in a correct way so it doesn't pop the warning. I know i can make rules on my netbeans so it doesn't trigger the warning but i dont want that. I'm pretty sure there must exist a syntax that the IDE takes as valid.
I've been able to fix similar issue like
text-align: start;// shows warning
text-align: start right;// NO WARNING HERE