How would you approach fixing browser-specific styling issues?

Technology CommunityCategory: CSSHow would you approach fixing browser-specific styling issues?
VietMX Staff asked 3 years ago
  • After identifying the issue and the offending browser, use a separate style sheet that only loads when that specific browser is being used. This technique requires server-side rendering though.
  • 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.