🙏 possible to rotate (page orientation landscape) to selected page ? 🙏 #551
Answered
by
yhatt
RobbiNespu
asked this question in
Q&A
-
Let say my markdown look like this
and my css is
How and it is possible to rotate PAGE 2 to landscape? |
Beta Was this translation helpful? Give feedback.
Answered by
yhatt
Dec 6, 2024
Replies: 1 comment 1 reply
-
No. It is not common case changing the screen size in the middle of a presentation. Therefore, Marp does not support changing the slide size in the middle of slides. Only one size, as defined by the theme, is used throughout the presentation. For rotating just the slide contents, you can use section[id="2"] {
rotate: 90deg;
} |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
RobbiNespu
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No. It is not common case changing the screen size in the middle of a presentation. Therefore, Marp does not support changing the slide size in the middle of slides. Only one size, as defined by the theme, is used throughout the presentation.
For rotating just the slide contents, you can use
rotate
(ortransform: rotate()
) CSS property. Please note that this is not changing the original slide size.