Skip to content

Commit

Permalink
docs: elaborate on how style auto-prefixing works (#393)
Browse files Browse the repository at this point in the history
  • Loading branch information
naokie committed Jun 17, 2021
1 parent c608827 commit 53fb728
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/guide/class-and-style.md
Original file line number Diff line number Diff line change
Expand Up @@ -228,9 +228,9 @@ data() {
<div :style="[baseStyles, overridingStyles]"></div>
```

### 自動プリフィックス
### 自動プレフィックス

`:style`[ベンダー接頭辞](https://developer.mozilla.org/ja/docs/Glossary/Vendor_Prefix)を要求される CSS プロパティを使用するとき、例えば、`transform` においては、Vue.js は自動的に適切な接頭辞を検出し、適用されるスタイルに追加します
`:style` [ベンダープレフィックス](https://developer.mozilla.org/ja/docs/Glossary/Vendor_Prefix) が必要な CSS プロパティを使用するとき、Vue は自動的に適切なプレフィックスを追加します。Vue は現在のブラウザでどのスタイルプロパティがサポートされているかを実行時に確認することでこれを行います。ブラウザが特定のプロパティをサポートしていない場合は、様々なプレフィックスのバリエーションがテストされて、サポートされているものを見つけようとします

### 複数の値

Expand Down

0 comments on commit 53fb728

Please sign in to comment.