[HTML] Mention Postcss as a reasonable way to fix cross-browser styling issues (#195)

* Adds Babel as a reasonable way to fix browser specific issues.

* Update css-questions.md
This commit is contained in:
Rob Levin 2019-06-01 16:50:08 -07:00 committed by Yangshun Tay
parent 1888319ee2
commit 6e3c4cb2fe
1 changed files with 1 additions and 0 deletions

View File

@ -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)