Quarto Column Formatting

Quarto column formatting is easy and intuitive!
Quarto
Author

Isaac Flath

Published

November 14, 2022

Today I Learned

Today I learned that it’s very easy to make multi-column layouts in quarto.

By having this ability to easily create and control the width of columns in different sections of markdown I can do a lot of nice things. For example, I combined this concept with my favorite quarto feature (callout blocks) to create my testimonials page!

::: {.columns}

::: {.column width="42%"}
Column on the Left
:::

::: {.column width="6%"}
<!-- empty column to create gap -->
:::

::: {.column width="42%"}
Column on the right
:::

:::