Skip to content

Instantly share code, notes, and snippets.

@ncole458
Created February 25, 2018 09:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ncole458/e094ece3fd5b6f3af587c7c8ed2155bf to your computer and use it in GitHub Desktop.
Save ncole458/e094ece3fd5b6f3af587c7c8ed2155bf to your computer and use it in GitHub Desktop.
Fix Carousel in Bootstrap 4
// FIX BOOTSTRAP CAROUSEL WHITE-SPACE BETWEEN SLIDES
.carousel-item {
transition: -webkit-transform 0.5s ease !important;
transition: transform 0.5s ease !important;
transition: transform 0.5s ease, -webkit-transform 0.5s ease !important;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment