When I dynamically generate HTML code from markdown, I typically wrap it in the <p></p>
tag like so:
<p class="embedded_markdown">
...
<h1>...</h1>
...
<h3>...</h3>
...
</p>
I decided to experiment with showing differences in the generated HTML by using CSS:
p.embedded_markdown {
background-color: yellow;
}
Unfortunately, I didn't see any changes when applying the CSS. Can you help me figure out what might be wrong and how to successfully make some visual adjustments?