我正在尝试使用Reveal.js构建一个响应迅速的用户体验组合。但是,我注意到我在样式表中写的大部分属性都被覆盖了。有没有办法强制幻灯片使用Reveal.js使用自定义CSS进行字体大小和其他设置?
答案 0 :(得分:3)
是的。当然,这不是最好的方式,但简单而实用。小心地,将“!important”添加到要调整的设置中。像:
.reveal section p {
font-weight: bold !important;
font-size: 1.1em !important;
}
.reveal section pre code {
font-size: 0.7em !important;
}
希望这有帮助!