PostCSS
The build will fail under any of the following conditions:
- Node.js is not installed
- The
postcsspackage is not installed - The
postcss-clipackage is not installed - The
autoprefixerpackage is not installed
CSS
::placeholder {
color: gray;
}CSS after PostCSS (autoprefix)
::-moz-placeholder {
color: gray;
}
::placeholder {
color: gray;
}