简体   繁体   中英

How can I center subtitle text in quarto?

I would like to center one of my sub-headers not the text below it. I tried the code below and it centers the subheading and also the text in the subsection.

---
title: "how do I center only a title"
format: html
---
### Something

something not centered

### A Centered Subheading {style="text-align: center;"}

Blah blah

- Blah
- More blah
- still more blah

### Somethingelse

not centered

What is the proper way to center just the subtitle?

You can center a specific header using css . Simply define a class name for that header like here I have used .test as a class applied to that header. And then in a separate css file styles.css , we need to write the style rules.

---
title: "how do I center only a title"
format: html
css: styles.css
---

### Something

something not centered


### A Centered Subheading {.test}


Blah blah

- Blah
- More blah
- still more blah

### Somethingelse

not centered

And In the styles.css file

.test h3 {
  text-align: center;
}

Output

quarto_doc_with_a_header_centered

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM