Ich verwende HighlightJS, um meinen Code hervorzuheben. Wie setze ich den Abstand zwischen Vor- und Code-Tags zurück (grau hinterlegt)? Ich setze Padding und Rand von Pre- und Code-Tags auf 0, aber das scheint nicht zu funktionieren. Idealerweise möchte ich, dass das Code-Tag die gesamte Höhe des Pre-Tags belegt. Können Sie mir bitte sagen, wie ich das machen kann?Code-Tag belegt nicht 100% der übergeordneten Pre-Tag-Höhe
pre{
background: gray;
margin: 0 !important;
padding: 0 !important;
}
code{
margin: 0 !important;
padding: 0 !important;
}
<link href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.4.0/styles/color-brewer.min.css" rel="stylesheet"/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.4.0/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<pre>
<code class="html">
<!DOCTYPE html>
<html>
<title>HTML Tutorial</title>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
</code>
</pre>