R markdown ioslides 标题页格式更改

问题描述 投票:0回答:1

我想更改当我们编织 html ioslides 时出现的第一个标题页的外观。这是测试 Rmd 文件的标头:

    ---
    title: This test
    subtitle: that test
    author: jake
    output: 
       ioslides_presentation:
       incremental: true
       css: myCss4.css
    ---

我想要的是将标题居中(默认为左下角)并更改颜色和字体大小。我成功地改变了颜色和字体大小,但没有改变文本的位置......

这是我尝试过的自定义CSS:

    slides > slide.title-slide hgroup h1 {
      font-weight: bold;
      font-size: 24pt;
      color:red;
      bottom: 50%;
    }

我尝试过底部:50%;,顶部= 50%和其他一些东西但没有成功......标题文本位置没有改变。我编码什么?或者有更好的方法来代替 css 吗?

html css r rstudio r-markdown
1个回答
6
投票

尝试使用以下方法:

slides > slide.title-slide hgroup h1 {
  font-weight: bold;
  font-size: 24pt;
  color: red;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
© www.soinside.com 2019 - 2024. All rights reserved.