diff --git a/docs/markdown/reference/router-links/README.md b/docs/markdown/reference/router-links/README.md index 88e7a91de36..9e9d70e3e94 100644 --- a/docs/markdown/reference/router-links/README.md +++ b/docs/markdown/reference/router-links/README.md @@ -174,8 +174,8 @@ the viewport, Nuxt.js will automatically prefetch the code splitted page. Settin Prefetching support requires [IntersectionObserver](https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API) -to be supported (see [CanIUse](https://caniuse.com/#feat=intersectionobserver)). For browsers that -do not support IntersectionObserver, you can use the following conditional polyfill in +to be supported (see [Can I use](https://caniuse.com/intersectionobserver)). For browsers that do +not support IntersectionObserver, you can use the following conditional polyfill in `nuxt.config.js`: ```js diff --git a/src/components/avatar/_avatar.scss b/src/components/avatar/_avatar.scss index 47e4befd32e..95550d14536 100644 --- a/src/components/avatar/_avatar.scss +++ b/src/components/avatar/_avatar.scss @@ -85,7 +85,7 @@ max-height: auto; border-radius: inherit; // This is not supported in IE11 and Edge <16 - // https://caniuse.com/#feat=object-fit + // https://caniuse.com/object-fit object-fit: cover; } diff --git a/src/components/form-file/README.md b/src/components/form-file/README.md index 235afc03335..01f4d8e66db 100644 --- a/src/components/form-file/README.md +++ b/src/components/form-file/README.md @@ -59,7 +59,7 @@ files are selected the return value will be an array of JavaScript CAUTION: Directory mode is a non-standard feature. While being supported by all modern browsers, it should not be relied on for production. Read more on MDN - and Can I use. + and Can I use.
diff --git a/src/components/form-input/README.md b/src/components/form-input/README.md index 6de0b3faa50..353e3f21f83 100644 --- a/src/components/form-input/README.md +++ b/src/components/form-input/README.md @@ -75,7 +75,7 @@ rendered and a console warning will be issued. **Caveats with input types:** - Not all browsers support all input types, nor do some types render in the same format across - browser types/versions. Refer to [caniuse.com](https://caniuse.com/#search=input). + browser types/versions. Refer to [Can I use](https://caniuse.com/?search=input). - Browsers that do not support a particular type will fall back to a `text` input type (even though the rendered `type` attribute markup shows the requested type). - No testing is performed to see if the requested input type is supported by the browser. @@ -474,7 +474,7 @@ from an array of options. - Datalists **cannot** be applied to input fields with type `password`, `range` or `color`. - Not all browsers fully support `