如何在文档中定义自定义CSS?

时间:2017-06-08 22:49:44

标签: r rstudio rpres

根据RStudio documentation of RPres,有一种方法可以在.Rpres文档中添加一些自定义CSS样式:

  

[我]如果您希望在演示文稿源文件中包含样式,您也可以将它们放在标题幻灯片上方的源代码顶部(其中包含的任何样式标记将自动附加到head元素)。 / p>

我误解了什么吗?以下应该根据:

.reveal section del {
  color: red;
}

test
========================================================

test
========================================================

~~should be red~~

但这会产生:

enter image description here

显然,它没有被解析为CSS。我错过了什么吗?

如果我只是将该部分单独保存到一个名称相同的.css文件中(如同在同一文档中提到的那样),它就会按预期工作。我只是没有看到创建单独文件的重点是定义一个自定义样式。

1 个答案:

答案 0 :(得分:3)

样式需要包含在<style></style>

<style>
.reveal section del{
  color: red;
}
</style>

csstest
========================================================
author: 
date: 
autosize: true


test
========================================================

~~should be red~~

enter image description here

我发现this presentation是一个有用的资源