diff --git a/docs/components/carousel.md b/docs/components/carousel.md
index 6bcd8f796c..8dd819fba1 100644
--- a/docs/components/carousel.md
+++ b/docs/components/carousel.md
@@ -59,11 +59,11 @@ Adding in the previous and next controls:
-
+
Previous
-
+
Next
@@ -92,11 +92,11 @@ You can also add the indicators to the carousel, alongside the controls, too.
-
+
Previous
-
+
Next
diff --git a/docs/examples/carousel/index.html b/docs/examples/carousel/index.html
index 3f906960ff..edab899190 100644
--- a/docs/examples/carousel/index.html
+++ b/docs/examples/carousel/index.html
@@ -75,11 +75,11 @@
-
+
Previous
-
+
Next
diff --git a/docs/migration.md b/docs/migration.md
index 212de6dfe5..c1b6435caa 100644
--- a/docs/migration.md
+++ b/docs/migration.md
@@ -187,7 +187,7 @@ Dropped entirely for the new card component.
- All CSS has been un-nested and renamed, ensuring each class is prefixed with `.carousel-`.
- For carousel items, `.next`, `.prev`, `.left`, and `.right` are now `.carousel-item-next`, `.carousel-item-prev`, `.carousel-item-left`, and `.carousel-item-right`.
- `.item` is also now `.carousel-item`.
- - For prev/next controls, `.right` and `.left` modifiers are now `.carousel-control-left` and `.carousel-control-left`.
+ - For prev/next controls, `.carousel-control.right` and `.carousel-control.left` are now `.carousel-control-left` and `.carousel-control-left`, meaning they no longer require a specific base class.
- Removed all responsive styling, deferring to utilities (e.g., showing captions on certain viewports) and custom styles as needed.
- Removed image overrides for images in carousel items, deferring to utilities.
- Tweaked the Carousel example to include the new markup and styles.
diff --git a/scss/_carousel.scss b/scss/_carousel.scss
index 6b330db68c..8a077f0833 100644
--- a/scss/_carousel.scss
+++ b/scss/_carousel.scss
@@ -56,7 +56,8 @@
// Left/right controls for nav
//
-.carousel-control {
+.carousel-control-prev,
+.carousel-control-next {
position: absolute;
top: 0;
bottom: 0;