.Rpres(非rmarkdown)两列布局在IE中不兼容

.Rpres(非rmarkdown)两列布局在IE中不兼容,r,presentation,rpres,R,Presentation,Rpres,Rpres(不是显著的,例如iSlides_演示文稿)在两列布局中有很大的优势:**。该功能在Firefox和Chrome中运行良好。例如,下面的代码 First Slide ======================================================== For more details on authoring R presentations please visit <https://support.rstudio.com/hc/en-us/arti

Rpres(不是显著的,例如iSlides_演示文稿)在两列布局中有很大的优势:**。该功能在Firefox和Chrome中运行良好。例如,下面的代码

First Slide
========================================================
For more details on authoring R presentations please visit 
<https://support.rstudio.com/hc/en-us/articles/200486468>.

- Bullet 1
- Bullet 2
- Bullet 3

***

```{r, fig.height=5}
plot(cars)
```

有人能建议如何改进它(修改css等)?谢谢!

嗯,我想我找到了解决办法。 使用以下代码创建.css文件:

.reveal .slides section .column { 
  position: absolute; 
  width: 48%; 
  top: 2.5em; 
  bottom: 0; 
  margin: auto; 
 } 
并将其包含在头部YAML中。代码来自默认的css。我把“位置”从“固定”改为“绝对”

.reveal .slides section .column { 
  position: absolute; 
  width: 48%; 
  top: 2.5em; 
  bottom: 0; 
  margin: auto; 
 }