-
DescriptionHi All, Probably this is a naive question but I want to add line after
But unfortunately, I couldn't get that working. Any ideas? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Note that this is a nearly 100 % HTML question which are more appropriate elsewhere. 😉 This being said, your class has absolutely no content, thus nothing to be displayed. ---
title: "Quarto Playground"
format: revealjs
css: theme.css
---
## Quarto Playground slide
This is a playground for Quarto. h2::after {
content: "";
display: block;
margin-top: 0.5em;
border-bottom: 1px solid black;
} Also, you should not used
|
Beta Was this translation helpful? Give feedback.
Note that this is a nearly 100 % HTML question which are more appropriate elsewhere. 😉
This being said, your class has absolutely no content, thus nothing to be displayed.
See the below working example:
Also, you should not used
!important
lightly.