How to change the vertical alignment #458
-
What css should I use to use to position the content towards the top of the slides?
And the following only changes the headers:
|
Beta Was this translation helpful? Give feedback.
Answered by
yhatt
Jul 9, 2023
Replies: 2 comments
-
Refer to marp-team/marp-core#78 (comment).
section {
justify-content: flex-start;
} This tweak works with |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
SoumayaMauthoorMOJ
-
Perfect thank you :-) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Refer to marp-team/marp-core#78 (comment).
position: absolute
is suitable to fix the electively element to the top. To disable centering for every contents, try this:This tweak works with
default
theme anduncover
theme.