2017-09-30 5 views
0

xaringan rmarkdownにcssを使用してタイトルスライドの見出しにテキストを中央に配置するにはどうすればよいですか。以下のコードを使用していませんでした。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 
+1

タイトルスライドの1つでサンプルドキュメントを提供できますか。 –

+0

どうやってマーティンをすることができますか? –

+0

最小限の作業用のRmdドキュメントの内容をコピーして質問に貼り付けます。 –

答えて

1

例えば、absolute位置を使用

.title-slide h3:nth-of-type(2) { 
    position: absolute; 
    top: 0; 
} 
+0

動作しませんでした。私の意図は、垂直にではなく、水平にすることです。私はなぜテキスト整列:センター、それは動作しません理解していない。 –

関連する問題