treehouse : what would you like to learn today?
Web Design Web Development iOS Development

Empty Table Markup

Last updated on:

<table>
	<thead>
		<tr>
			<th></th>
			<th></th>
			<th></th>
			<th></th>
		</tr>
	</thead>
	<tbody>
		<tr>
			<td></td>
			<td></td>
			<td></td>
			<td></td>
		</tr>
		<tr>
			<td></td>
			<td></td>
			<td></td>
			<td></td>
		</tr>
		<tr>
			<td></td>
			<td></td>
			<td></td>
			<td></td>
		</tr>
	</tbody>
</table>
View Comments

Comments

  1. Thank you Chris! Helped me alot! :D

  2. Jannik
    Permalink to comment#

    I always thought, Layouts with table are bad

  3. fazle
    Permalink to comment#

    Was it a snippet that important to show? Why would a person be here in first place if he doesn’t know what a HTML table is?

  4. Shez
    Permalink to comment#

    @Jannik: yes layout with tables are bad but this page does not mention that we should use tables for layout merely points out the correct usage should we need to display DATA i.e. real tables

Leave a Comment

Use markdown or basic HTML and be nice.