Skip to content

Instantly share code, notes, and snippets.

<div class="flex-container">
<div class="flex-item">
Content of column one
</div>
<div class="flex-item">
Content of column two
<!-- Basic two column layout -->
<div style="display: flex; flex-flow: row">
<div style="width: 50%">
Content of column one
</div>
<div style="width: 50%">
Content of column one
</div>
</div>
@rgoj
rgoj / borderless-table.html
Last active February 10, 2024 09:41
Examples of creating a table without borders
<!-- STARTING POINT: A simple table that will have borders -->
<table>
<tbody>
<tr>
<td>Column One</td>
<td>Column One</td>
</tr>
<tr>
<td>Content of column one</td>
<td>Content of columnt two</td>