I break my head about the next issue. I use Bootstrap 3 vendor-prefixes.less for my website to generate the CSS prefixes.
I want to generate the following code:
p {
-moz-transform: translate3d(0, 50px, 0);
-ms-transform: translate3d(0, 50px, 0);
-o-transform: translate3d(0, 50px, 0);
-webkit-transform: translate3d(0, 50px, 0);
transform: translate3d(0, 50px, 0);
}
Trough the following mixin:
p {
.translate3d(translate3d(0,50px,0));
}
But the Less Compiler displays each time the following error message: "No matching definition was found for .translate3d (translate3d (0, 50px, 0)) in the path ..."
Does anyone have an idea what could cause this?