Login Login
MORE

WIDGETS

Widgets

Wanted articles
Who is online?
Article tools

HTML:Tabelle

From Aino Wiki

Jump to: navigation, search

Tabella HTML

Tutorial HTML con stile Es. semplice 1.

<table style="width: 100%;">
	<thead>
		<tr>
			<th>
				Titolo 1
			</th>
			<th>
				Titolo 2
			</th>
		</tr>
	</thead>
	<tbody>
		<tr>
			<td>Cella 1, 1</td>
			<td>Cella 1, 2</td>
		</tr>
		<tr>
			<td>Cella 2, 1</td>
			<td>Cella 2, 2</td>
		</tr>
	</tbody>
</table>

Es. semplice 2. Con header e footer

<table id="...">
	<!-- Table header -->	
		<thead>
			<tr>
				<th scope="col" id="...">...</th>
				...
			</tr>
		</thead>	
	<!-- Table footer -->	
		<tfoot>
	        <tr>
	              <td>...</td>
	        </tr>
		</tfoot>	
	<!-- Table body -->	
		<tbody>
			<tr>
				<td>...</td>
				...
			</tr>
			...
		</tbody>
</table>

Mappa e Link


HTML | Alias_PaginaPadre


HTML in Tips


Parole chiave:

Author