Heim > Artikel > Web-Frontend > Markdown-Codeblöcke in HTML
Hallo! Ich liebe Markdown-Codeblöcke, aber standardmäßig haben wir keine Markdown-Codeblöcke in HTML. Wir machen es mit CSS.
.code { width: auto; max-width: 80%; background-color: #2d2d2d; color: #ffffff; border: 1px solid #444; border-radius: 8px; padding: 20px; margin: 0 auto; font-family: 'Courier New', Courier, monospace; font-size: 14px; line-height: 1.5; overflow-x: auto; white-space: pre-wrap; word-wrap: break-word; margin-bottom: 15px; } .code pre { margin: 0; } .code code { display: block; }
.code { width: auto; max-width: 80%; background-color: #2d2d2d; color: #ffffff; border: 1px solid #444; border-radius: 8px; padding: 20px; margin: 0 auto; font-family: 'Courier New', Courier, monospace; font-size: 14px; line-height: 1.5; overflow-x: auto; white-space: pre-wrap; word-wrap: break-word; margin-bottom: 15px; } .code pre { margin: 0; } .code code { display: block; }
<p class="code"> your text here </p>
Zum Beispiel habe ich es auf meiner Website verwendet: https://modvim.quitaxd.online/installation
Wenn es nicht lebt, gebe ich einen Markdown-Codeblöcke in HTML:
Ich habe die Hintergrundfarbe manuell geändert.
Das obige ist der detaillierte Inhalt vonMarkdown-Codeblöcke in HTML. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!