Skip to content

Commit

Permalink
Refine browser support baseline copy
Browse files Browse the repository at this point in the history
  • Loading branch information
nkabrown committed Oct 4, 2022
1 parent 64fb60a commit b3a4a42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engineering-mindset.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ I'm also creating content for several other guides. Much of this material is pre

## Setting a Browser Support Baseline

Only support relatively modern browsers. The simplest way to test user agent support is through the `@support` CSS conditional rule. Supporting relatively modern browsers enables usage of new JS, CSS, and Web API features without the need to polyfill. Users on outdated browsers are gently reminded to update or switch improving the future for both users and developers.
Only support relatively modern browsers. The simplest way to test user agent support is through the `@support` CSS conditional rule and I am checking for CSS feature support in `outdated-browser-wall.css`. Supporting relatively modern browsers enables usage of new JS, CSS, and Web API features without the need to polyfill. Users on outdated browsers are gently reminded to update or switch improving the future for both users and developers.

Using the browser support baseline I've set in `outdated-browser-wall.css` with [browserslist](https://github.com/browserslist/browserslist) I can improve the targeting accuracy of some specific frontend tools. The browser support baseline is replicated in my `.browserslistrc` file.

Expand Down

0 comments on commit b3a4a42

Please sign in to comment.