From e465293ffc3ce0e66925dac6eeaee5d5df14d7ec Mon Sep 17 00:00:00 2001 From: skirtle <65301168+skirtles-code@users.noreply.github.com> Date: Sun, 23 May 2021 11:46:49 +0100 Subject: [PATCH] docs: elaborate on how style auto-prefixing works (#1062) --- 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