ElementalCSS

Other Elements

Horizontal Rule


<hr />

Mark

This element is used for Text higlighting

<p>This element is used for <mark>Text higlighting</mark></p>

Blockquote

This is a blockquote

This is a blockquote

This is a blockquote

A cite
<blockquote>
This is a blockquote
</blockquote>

<blockquote>
<p>This is a blockquote</p>
<p>This is a blockquote</p>
<cite>A cite</cite>
</blockquote>

Code

This is some code
<code>This is some code</code>

Keyboard

A Ctrl+C
<kbd>A</kbd> <kbd>&rarr;</kbd> <kbd>Ctrl+C</kbd>

Preformatted

This is some preformatted text
<pre>This is some preformatted text</pre>

Details

A details title

This is some content that is hidden by default.

A details title

This is some content that is hidden by default.

<details>
    <summary>A details title</summary>
    <p>This is some content that is hidden by default.</p>
</details>
<details>
    <summary>A details title</summary>
    <p>This is some content that is hidden by default.</p>
</details>