0

如何使用 xaringan rmarkdown 中的 css 在标题幻灯片的标题中居中文本。使用下面的代码它没有。

.title-slide h3:nth-child(2) {
    font-weight: normal;
    font-size: 40px;
    text-align: center;
    color: grey;
    margin-top: 350px; 
}

---
title: "Correlación"
author: "Manuel Spínola"
date: "`r Sys.Date()`"
output:
  xaringan::moon_reader:
  css: mi_estilo.css
  lib_dir: libs
  nature:
    highlightStyle: github
    highlightLines: true
    countIncrementalSlides: false

   ```{r setup, include=FALSE}
   options(htmltools.dir.version = FALSE)
   ```


   # Hola
4

1 回答 1

1

使用absolute位置,例如

.title-slide h3:nth-of-type(2) {
    position: absolute;
    top: 0;
}
于 2017-10-01T01:37:23.213 回答