我想更改当我们编织 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 吗?
尝试使用以下方法:
slides > slide.title-slide hgroup h1 {
font-weight: bold;
font-size: 24pt;
color: red;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}