From 7d64031c87a71a0e8e9e5f305c4c7ebf373b8673 Mon Sep 17 00:00:00 2001 From: Christian Oliff Date: Thu, 12 Nov 2020 22:01:00 +0900 Subject: [PATCH] Fix caniuse.com URLS to prevent redirects (#32135) Shorter URLS which are faster as they avoid HTTP redirects --- site/content/docs/5.0/components/navbar.md | 2 +- site/content/docs/5.0/forms/form-control.md | 2 +- site/content/docs/5.0/getting-started/javascript.md | 2 +- site/layouts/partials/callout-warning-input-support.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/site/content/docs/5.0/components/navbar.md b/site/content/docs/5.0/components/navbar.md index 58629fd664..f5f4269570 100644 --- a/site/content/docs/5.0/components/navbar.md +++ b/site/content/docs/5.0/components/navbar.md @@ -443,7 +443,7 @@ Use any of the responsive containers to change how wide the content in your navb Use our [position utilities]({{< docsref "/utilities/position" >}}) to place navbars in non-static positions. Choose from fixed to the top, fixed to the bottom, or stickied to the top (scrolls with the page until it reaches the top, then stays there). Fixed navbars use `position: fixed`, meaning they're pulled from the normal flow of the DOM and may require custom CSS (e.g., `padding-top` on the ``) to prevent overlap with other elements. -Also note that **`.sticky-top` uses `position: sticky`, which [isn't fully supported in every browser](https://caniuse.com/#feat=css-sticky)**. +Also note that **`.sticky-top` uses `position: sticky`, which [isn't fully supported in every browser](https://caniuse.com/css-sticky)**. {{< example >}}