elements #

Styles for plain HTML elements . See also typography and forms.

#

👇 hr
#


#

a link in a p

a link in a div

a link with .selected

#

code in a p

code in a div

#

a pre is
  preformatted
					text
code in a pre
		 	is a
				 block

#

Click this summary to see the rest of the details

The children of the details excluding the summary.

<details>
	<summary>
		Click this <code>summary</code>
		to see the rest of the <code>details</code>
	</summary>
	<p>The children of the <code>details</code> excluding the <code>summary</code>.</p>
	<Code code={'...'} />
</details>

#

#

<header>header</header>
header

#

<footer>footer</footer>
footer

#

<section>section</section>
section

ul
#

  • a
  • b
  • see

ul with .unstyled

  • a
  • b
  • see

ol
#

  1. one
  2. two
  3. etc

ol with .unstyled

  1. one
  2. two
  3. etc

menu
#

  • 1
  • 2
  • 3
  • menu with .unstyled

  • 1
  • 2
  • 3
  • #

    <table>
    	<thead>
    		<tr>
    			<th>th</th>
    			<th>th</th>
    			<th>th</th>
    		</tr>
    	</thead>
    	<tbody>
    		<tr><td>td</td><td>td</td><td>td</td></tr>
    		<tr><td>td</td><td>td</td><td>td</td></tr>
    		<tr><td>td</td><td>td</td><td>td</td></tr>
    	</tbody>
    </table>
    ththth
    tdtdtd
    tdtdtd
    tdtdtd
    <table class="w_100">
    	...
    </table>
    ththth
    tdtdtd
    tdtdtd
    tdtdtd

    TODO more!