HTML: Tablas Flashcards

1
Q
<table>
   <tr>
    ...
   </tr>
</table>
A

La etiqueta <tr> indica que se está agregando una fila a la tabla.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q
<table>
  <tr>
    <td>cell one data</td>
    <td>cell two data</td>
  </tr>
</table>
A

La etiqueta <td> añade una celda de datos a la tabla.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q
<table>
 <thead>
   <tr>
     <th>heading 1</th>
     <th>heading 2</th>
   </tr>
 </thead>
 <tbody>
   <tr>
     <td>col 1</td>
     <td>col 2</td>
   </tr>
 </tbody>
</table>
A

La etiqueta <thead> define los encabezados que tendrá la tabla.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q
<tr>
  <th rowspan="2">row 2</th>
  <td>col 1</td>
  <td>col 2</td>
</tr>
A

El atributo rowspan indica cuántas filas el elemento va a ocupar. En este caso: dos.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q
<table>
 <tbody>
   <tr>
     <td>row 1</td>
   </tr>
 </tbody>
</table>
A

La etiqueta <tbody> es un elemento semántico que contiene todo el cuerpo de la tabla.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q
<table>
  <tr>
    <th>column one</th>
    <th>column two</th>
  </tr>
  <tr>
    <td>1</td>
    <td>2</td>
  </tr>
</table>
A

La etiqueta <th> añade títulos a las filas y columnas de una tabla.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q
<tr>
  <th>row 2</th>
  <td colspan="2">col 1</td>
  <td>col 2</td>
  <td>col 3</td>
</tr>
A

El atributo colspan indica cuántas columnas va a abarcar el elemento. En este caso: dos.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q
<table>
 <thead>
   <tr>
     <th>heading 1</th>
     <th>heading 2</th>
   </tr>
 </thead>
 <tbody>
   <tr>
     <td>col 1</td>
     <td>col 2</td>
   </tr>
 </tbody>
 <tfoot>
   <tr>
     <td>summary of col 1</td>
     <td>summary of col 2</td>
   </tr>
 </tfoot>
</table>
A

La etiqueta semántica <tfoot> se indica para colocar filas y columnas al final de la tabla.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q
<table>
  <!-- rows and columns will go here -->
</table>
A

La etiqueta <table> se usa para colocar una tabla en la página.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly