From f36e2d78c0254012c66f531ac3d575efb8dcad69 Mon Sep 17 00:00:00 2001 From: skirtle <65301168+skirtles-code@users.noreply.github.com> Date: Thu, 20 May 2021 23:19:40 +0100 Subject: [PATCH] docs: elaborate on how style auto-prefixing works --- src/guide/class-and-style.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/class-and-style.md b/src/guide/class-and-style.md index e1fec4bcf7..6cba2ad6e7 100644 --- a/src/guide/class-and-style.md +++ b/src/guide/class-and-style.md @@ -230,7 +230,7 @@ The array syntax for `:style` allows you to apply multiple style objects to the ### Auto-prefixing -When you use a CSS property that requires [vendor prefixes](https://developer.mozilla.org/en-US/docs/Glossary/Vendor_Prefix) in `:style`, for example `transform`, Vue will automatically detect and add appropriate prefixes to the applied styles. +When you use a CSS property that requires a [vendor prefix](https://developer.mozilla.org/en-US/docs/Glossary/Vendor_Prefix) in `:style`, Vue will automatically add the appropriate prefix. Vue does this by checking at runtime to see which style properties are supported in the current browser. If the browser doesn't support a particular property then various prefixed variants will be tested to try to find one that is supported. ### Multiple Values