-
DescriptionThe closest related discussion I found was #13202 (from the title) but it was probably unrelated. I couldn't find anything better. For a newly created Quarto blog with ::: {#fig-my-figure layout-nrow=1}
Image 1
Image 2
Image 3
Caption
::: What I see up to a normal size (expected): ![]() What I see for widths smaller than I believe 767.98px: ![]() I would expect the layout to still work, by showing all three parts in the same row, shrinking space between them if necessary, but they certainly fit into a single row. Questions:
PS: Using Quarto 1.7.33 |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 5 replies
-
The best approach for everything HTML/CSS related is to open the HTML in your favourite browser, right click, choose "inspect" and use the developer mode to look at the CSS rules and HTML structure. Note that in Bootstrap, the usual/default is to stack elements on small display. |
Beta Was this translation helpful? Give feedback.
-
This is indeed intended behavior; in our judgment the column layout is a less important concern than the integrity of the content. In the future, we envision Quarto documents having greater control over the output generated at different media query breakpoints. But in the meantime, we do intend this to be default behavior of column contents. (You're always welcome to emit raw html blocks and custom styles that completely take over the appearance, of course!) |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
This is indeed intended behavior; in our judgment the column layout is a less important concern than the integrity of the content.
In the future, we envision Quarto documents having greater control over the output generated at different media query breakpoints. But in the meantime, we do intend this to be default behavior of column contents.
(You're always welcome to emit raw html blocks and custom styles that completely take over the appearance, of course!)