RPresentation中字体大小不变

时间:2016-01-17 04:41:47

标签: rstudio r-markdown

我正在尝试使用RStudio更改RPresentation中的字体。虽然font-size适用于有序列表和无序列表,但我无法使其适用于自定义类。

<style>
.reveal p {font-size: 35px;}
.reveal ul,
.reveal ol {
  font-size: 25px;
}
.mypara1 {
  color: red;
  font-size: 10px;
}
.mypara2 {
  color: blue;
  font-size: 40px;
}

.redText {
  color: red;
  font-weight: bold;
}
.highlightGreen { background-color:#40FF00; }
.highlightOrange { background-color:#FE9A2E; }
</style>

ZTest
========================================================
author: Mickey
date: 



First Slide
========================================================

For more details on authoring R presentations click the
**Help** button on the toolbar.

- Bullet 1
- Bullet 2
- Bullet 3

<br>

<ol>
  <li>List1</li>
  <li>List2</li>
  <li>List3</li>
</ol>

Second Slide
========================================================

<h5> This is h5 font</h5>
<h6> This is h6 font</h6>

<span class="mypara1">mypara1 font-size: 10px</span><br>
<span class="mypara2">mypara2 font-size: 40px </span><br>
<small>Small Text </small><br>
<span class="highlightGreen">Green Highlight</span> <br>
<span class="redText">Red Text</span>

请参阅下面的屏幕截图... mypara1和mypara2都以相同的大小显示,即使我为它们指定了不同的字体大小。

enter image description here

1 个答案:

答案 0 :(得分:2)

Rpres CSS中似乎有一些东西会覆盖你的尝试。将字体大小映射到getView而不是span.mypara1会产生预期的结果。

.mypara1