-
-
Notifications
You must be signed in to change notification settings - Fork 16.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
support for style="column-count: 2;"
#2892
Comments
Just add the style to the UL, not the DIV. Case closed. |
Issue can be closed, see the fix above. |
Hi @Martinomagnifico, these are slides generated by pandoc, with the markdown:
It's not possible to apply the style to the UL. Also, is your suggestion of moving the style to |
It seems like the UL is displayed (as a whole) as inline-block, which then will not break across columns. In the theme CSS file there's this rule:
You can override this with something like this: |
@Martinomagnifico thanks! I'm able to get this to work with: /* https://github.com/hakimel/reveal.js/issues/2892 */
div[style*="column-count"] ul, div[style*="column-count"] ol
{
display: block
} I appreciate this hack but wonder why RevealJS sets |
I only see a single column in the following slide:
The text was updated successfully, but these errors were encountered: