Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 470 Bytes

10.vendor-prefixes.md

File metadata and controls

19 lines (15 loc) · 470 Bytes

VEndor Prefixes

  • Permite que o browser adicione features a fim de colocar em uso alguma novidade que vemos no CSS

Exemplo

p {
  -webkit-background-clip: text;    /* Chrome, Safari, ios e Android */
  -moz-background-clip: text;       /* Mozilla (Firefox) */
  -ms-background-clip: text;        /* Internet Explorer */
  -o-background-clip: text;         /* Opera */
}

Consultas

[http://ireade.github.io/which-vendor-prefix/] [http://caniuse.com]