diff --git a/docs/documentation/modifiers/helpers.html b/docs/documentation/modifiers/helpers.html
index c29d333ff5..e9a6aa1dac 100644
--- a/docs/documentation/modifiers/helpers.html
+++ b/docs/documentation/modifiers/helpers.html
@@ -63,5 +63,9 @@
is-sr-only |
Hide elements visually but keep the element available to be announced by a screen reader |
+
+ is-relative |
+ Applies position: relative to the element. |
+
diff --git a/sass/base/helpers.sass b/sass/base/helpers.sass
index 17fdf15acc..a28449bc9b 100644
--- a/sass/base/helpers.sass
+++ b/sass/base/helpers.sass
@@ -274,3 +274,6 @@ $displays: 'block' 'flex' 'inline' 'inline-block' 'inline-flex'
.is-unselectable
@extend %unselectable
+
+.is-relative
+ position: relative