Bootstrap 如何删除白色背景是背后我的引导旋转木马上的箭头

gg0vcinb  于 5个月前  发布在  Bootstrap
关注(0)|答案(1)|浏览(53)

我一直在尝试用Bootstrap 5制作一个视频轮播,我试图解决的一个问题是删除当我将鼠标悬停在箭头上时弹出的白色背景。通常情况下,它不应该有背景,但由于某种原因,它确实有。

  • 点击放大 *


的数据

代码嗅探器

.heading2 {
  font-size: 30px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.carousel-inner {
  width: 100%;
  height: auto;
}

个字符

p1iqtdky

p1iqtdky1#

两个独立的CDN,一个版本为5.0.2,另一个版本为5.3.2,是Bootstrap两个包含的来源。使用单个版本是最好的,以避免此类冲突。在这种情况下,5.3.2是我建议使用的最新版本。以下是解决方案:-

.heading2 {
    font-size: 30px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
  }
  .carousel-inner {
    width: 100%;
    height: auto;
  }
  .carousel-control-prev:hover,
  .carousel-control-next:hover {
      background-color: transparent !important;
  }

个字符

相关问题