AK-21/Graphite-Industrial-Intelligence
0
1# Autoprefixer [![Cult Of Martians][cult-img]][cult]2 3<img align="right" width="94" height="71"4 src="https://postcss.github.io/autoprefixer/logo.svg"5 title="Autoprefixer logo by Anton Lovchikov">6 7[PostCSS] plugin to parse CSS and add vendor prefixes to CSS rules using values8from [Can I Use]. It is recommended by Google and used in Twitter and Alibaba.9 10Write your CSS rules without vendor prefixes (in fact, forget about them11entirely):12 13```css14::placeholder {15 color: gray;16}17 18.image {19 width: stretch;20}21```22 23Autoprefixer will use the data based on current browser popularity and property24support to apply prefixes for you. You can try the [interactive demo]25of Autoprefixer.26 27```css28::-moz-placeholder {29 color: gray;30}31::placeholder {32 color: gray;33}34 35.image {36 width: -moz-available;37 width: -webkit-fill-available;38 width: stretch;39}40```41 42Twitter account for news and releases: [@autoprefixer].43 44<a href="https://evilmartians.com/?utm_source=autoprefixer">45<img src="https://evilmartians.com/badges/sponsored-by-evil-martians.svg" alt="Sponsored by Evil Martians" width="236" height="54">46</a>47 48[interactive demo]: https://autoprefixer.github.io/49[@autoprefixer]: https://twitter.com/autoprefixer50[Can I Use]: https://caniuse.com/51[cult-img]: https://cultofmartians.com/assets/badges/badge.svg52[PostCSS]: https://github.com/postcss/postcss53[cult]: https://cultofmartians.com/tasks/autoprefixer-grid.html54 