diff --git a/questions/css-questions.md b/questions/css-questions.md index 10b73dcd7..9a6c867bc 100644 --- a/questions/css-questions.md +++ b/questions/css-questions.md @@ -176,6 +176,7 @@ CSS sprites combine multiple images into one single larger image. It is a common * Use libraries like Bootstrap that already handles these styling issues for you. * Use `autoprefixer` to automatically add vendor prefixes to your code. * Use Reset CSS or Normalize.css. +* If you're using Postcss (or a similar transpiling library), there may be plugins which allow you to opt in for using modern CSS syntax (and even W3C proposals) that will transform those sections of your code into corresponding safe code that will work in the targets you've used. [[↑] Back to top](#css-questions)