-webkit-transform-3d
Non-standard: This feature is non-standard and is not on a standards track. Do not use it on production sites facing the Web: it will not work for every user. There may also be large incompatibilities between implementations and the behavior may change in the future.
The -webkit-transform-3d
Boolean CSS media feature is a Chrome extension whose value is true
if vendor-prefixed CSS 3D transform
s are supported.
Note: This media feature is only supported by WebKit and Blink. If possible, use an @supports
feature query instead.
Syntax
-webkit-transform-3d
is a Boolean CSS media feature whose value is true
if the browser supports -webkit
prefixed CSS 3D transform
s.
Values
true
-
The browser supports the 3D CSS transforms with the
-webkit
prefix. false
-
The 3D CSS transforms prefixed with
-webkit
are not supported by the browser.
Examples
Examples of media queries with -webkit-transform-3d
@media (-webkit-transform-3d) {
.foo {
transform-style: preserve-3d;
}
}
@media (-webkit-transform-3d: 1) {
.foo {
transform-style: preserve-3d;
}
}
Specifications
Specification |
---|
Compatibility Standard # css-media-queries-webkit-transform-3d |
Browser compatibility
BCD tables only load in the browser