JSFiddle - React, Tailwind, and code Playground

by tmhr1850

HTML

<table border="2">
<tr>
<th colspan=2>type1</th>
<th>type2</th>
</tr>
<tr>
<td>aaa</td>
<td>bbb</td>
<td>ccc</td>
</tr>
<tr>

</tr>
</table>

<ul>
<li>1</li>
<li>2</li>
</ul>

<ol>
<li>1</li>
<li>2

</li>
</ol>

CSS

table{
  border-collapse:#010000;
  border: dashed 2px orange;
}
table th, table td{
  border: solid 4px blue;
  
}

table th{
  font-size:50px;
  color: red;
  background:black;
  border: dashed 10PX;
}

table td{
  color:orange;
}

ul,ol{
  background: pink;
}