3
我想創建自己的表格格式表使用Rmarkdown與Rstudio版本0.98.1028的ioslides_presentation輸出類型創建。不幸的是我無法改變表頭的格式。Rmarkdown ioslides變化表頭
這是RMD文件:
---
title: "I can't change table headers with css"
author: "Blah Blah"
date: "August 27, 2014"
output: ioslides_presentation
css: slidetheme.css
---
## Ugly table
A B C
--------- -------- --------
1 2 4
2 3 5
我的CSS文件:
td, th {
width: 4rem;
height: 2rem;
border: 1px solid #ccc;
text-align: center;
}
td, tr {background:white; background-color:white; color: black;}
th {
background: black;
border-color: white;
}
body {
padding: 1rem;
}
表師應對CSS的變化,但標題不會改變。我一直在這樣做,但無法弄清楚發生了什麼。有誰知道如何做到這一點 ?
由於提前, 米格爾
謝謝。完全新的CSS。這解釋了很多! – mmgm 2014-08-28 09:09:41