使用 css 配置 ioslides 背景

configuring ioslides background with css

如何使用 Rstudio markdown 去除 ioslides 生成的幻灯片底部的灰色渐变?我设法使用自定义 css:

将其从标题幻灯片中删除
.title-slide {
 background-color: white; 
}

但是,我没有成功地将它从所有其他幻灯片中删除。 Github 上的 ioslides markdown documentation provides very little documentation of the default css used and how to modify it. I have looked at default.css。是否有任何其他文档可用于使用 css 自定义 ioslides 的外观?

我遇到了同样的问题。以下 css 代码似乎删除了渐变背景:

slides > slide.backdrop {
  background: white;
}

我做了以下工作:

slides > slide.backdrop {
  background: none !important;
  background-color: white !important;
}

我遇到了同样的问题!通过在 CSS 文件中添加以下行,底部的灰色渐变被移除。

slides > slide {
  background: linear-gradient(#ffffff, #ffffff 85%, #ffffff);
  background-color: white;
  }