JSFiddle - React, Tailwind, and code Playground
HTML
<!DOCTYPE html> HTML Tables Challenge HTML Tables Challenge
<!-- Write your code below -->
<table border="1">
<thead>
<tr>
<th colspan="2">Heading</th>
</tr>
<tr>
<th colspan="2">Rown inside table header</th> LAST ROW CREATED
</tr>
<tr>
<th>Fruits</th>
<th>Veggies</th>
</tr>
</thead>
<tr>
<td>Apples</td>
<td>Broccoli</td>
</tr>
<tr>
<td>Oranges</td>
<td>Cucumbers</td>
</tr>
</table>
CSS
.widget-area{
float:left;
background: #ccc;
padding: 20px;
margin: 0 10px 10px 0;
}