Daniel_j_iii
Daniel_j_iii

Reputation: 3242

How to target a Div in CSS in Rmarkdown HTML

enter image description here

I'd like to be able to control the header of this HTML file with CSS inside Rmarkdown. I want to change the text size, but can't seem to control it, here is what I have tried

div.header.fluid-row {
  font-size: 12;
}

div.fluid-row {
  font-size: 12;
}

Upvotes: 0

Views: 258

Answers (1)

s.kuznetsov
s.kuznetsov

Reputation: 15213

Maybe so?

.fluid-row .title {
  font-size: 12px;
}

/*    OR    */

.fluid-row h1 {
  font-size: 12px;
}

Upvotes: 1

Related Questions