How can I control total size or width of elements like datasummary_skim from modelsummary package or datatable from DT package in bookdown? Those packages are great. But output is too large. I can zoom in and out via browser view, which looks perfectly fine. The commands themselves don't come with these options. Perhaps there is a general html feature to control the size of a code chunk output?
---
title: "Output Size"
author: "Author"
date: "Today"
output: html_document
---
Test
```{r cars}
library(DT)
datatable(mtcars)
library(modelsummary)
datasummary_skim(mtcars)
```
