Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mohamedkhallouq
GitHub Repository: mohamedkhallouq/content
Path: blob/main/files/en-us/web/css/@media/-webkit-animation/index.md
6517 views
---
title: "-webkit-animation" slug: Web/CSS/@media/-webkit-animation page-type: css-media-feature status: - deprecated - non-standard browser-compat: css.at-rules.media.-webkit-animation
---

{{CSSRef}}{{Non-standard_header}}{{Deprecated_Header}}

Note: All browsers support the animation property without vendor prefixes. Only WebKit (Safari), and not Chromium, based browsers supports the -webkit-animation media feature. No browsers support animation, without the prefix, as a media query. Use the @supports (animation) feature query instead.

The -webkit-animation Boolean CSS media feature is a WebKit extension whose value is true if vendor-prefixed CSS {{cssxref("animation")}}s are supported.

Apple has a description in Safari CSS Reference.

Note: This media feature is only supported by WebKit. If possible, use an {{cssxref("@supports")}} feature query instead.

Syntax

The -webkit-animation media feature is a Boolean whose value is true if the vendor-prefixed CSS animation properties are supported and the browser supports prefixed property media queries.

Values

  • true

    • : The browser supports -webkit prefixed CSS {{cssxref("animation")}}.

  • false

    • : The browser doesn't support these prefixed CSS animations.

Examples

Example of -webkit-animation

@media (-webkit-animation) { /* CSS to use if -webkit- prefixed animations are supported AND the browser supports prefixed properties as media queries */ }

Specifications

Not part of any standard.

Browser compatibility

{{Compat}}

See also