Muti grid layout beyond four with xaringan

Hello,

I am trying to build a big grid that is about 10 columns x 6 images each and I am trying to use the following code below based on this post here: https://stackoverflow.com/questions/55081930/create-an-image-grid-in-xaringan/55082201#55082201

When I change split-four to split-ten it doesn't work even when I have the right number of corresponding .column[] specified corresponding to the number specified. You can use any image. I just want to be able to create such a big grid for my slide.

---
title: "Split to grid in `xaringan`"
output:
  xaringan::moon_reader:
    css: ["ninjutsu"]
---


class: split-four

.column[
<img src="wedding.jpg">
<img src="rocks.jpg">
<img src="falls2.jpg">
<img src="paris.jpg">
<img src="nature.jpg">
<img src="mist.jpg">
<img src="paris.jpg">
]

.column[
<img src="underwater.jpg">
<img src="ocean.jpg">
<img src="wedding.jpg">
<img src="mountainskies.jpg">
<img src="rocks.jpg">
<img src="underwater.jpg">
]

.column[
other images
]

.column[
other images
]

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.