Web Foundations MONDAY, OCTOBER 28, 2013 LECTURE 19: TABLES.

28
Web Foundations MONDAY, OCTOBER 28, 2013 LECTURE 19 : TABLES

Transcript of Web Foundations MONDAY, OCTOBER 28, 2013 LECTURE 19: TABLES.

Page 1: Web Foundations MONDAY, OCTOBER 28, 2013 LECTURE 19: TABLES.

Web FoundationsMONDAY, OCTOBER 28, 2013

LECTURE 19: TABLES

Page 2: Web Foundations MONDAY, OCTOBER 28, 2013 LECTURE 19: TABLES.

Tables

The Basic Table

Company Employees Founded

ACME Inc 1000 1947

XYZ Corp 2000 1973

Page 3: Web Foundations MONDAY, OCTOBER 28, 2013 LECTURE 19: TABLES.

Tables

The Basic Table: The Parts Explained

Company Employees Founded

ACME Inc 1000 1947

XYZ Corp 2000 1973

Table is the container that holds all the individual parts

Company Employees Founded

ACME Inc 1000 1947

XYZ Corp 2000 1973

Company Employees Founded

ACME Inc 1000 1947

XYZ Corp 2000 1973

<table>

Each row is a container that holds all the individual data cells

<tr>

Each cell is a container that holds the individual data

<td>

Page 4: Web Foundations MONDAY, OCTOBER 28, 2013 LECTURE 19: TABLES.

Basic Table

Company Employees Founded

ACME Inc 1000 1947

XYZ Corp 2000 1973

<table>

</table>

Page 5: Web Foundations MONDAY, OCTOBER 28, 2013 LECTURE 19: TABLES.

Basic Table

Company Employees Founded

ACME Inc 1000 1947

XYZ Corp 2000 1973

<table>

</table>

<tr>

<tr>

<tr>

</tr>

</tr>

</tr>

Page 6: Web Foundations MONDAY, OCTOBER 28, 2013 LECTURE 19: TABLES.

Basic Table

Company Employees Founded

ACME Inc 1000 1947

XYZ Corp 2000 1973

<table>

</table>

<tr>

<tr>

<tr>

</tr>

</tr>

</tr>

<td>

<td>

<td>

<td>

<td>

<td>

<td>

<td>

<td>

</td>

</td>

</td>

</td>

</td>

</td>

</td>

</td>

</td>

Page 9: Web Foundations MONDAY, OCTOBER 28, 2013 LECTURE 19: TABLES.

Basic Table

Company Employees Founded

ACME Inc 1000 1947

XYZ Corp 2000 1973

<table>

</table>

<tr>

<tr>

<tr>

</tr>

</tr>

</tr>

<td>

<td>

<td>

<td>

<td>

<td>

<td>

<td>

<td>

</td>

</td>

</td>

</td>

</td>

</td>

</td>

</td>

</td>

Page 10: Web Foundations MONDAY, OCTOBER 28, 2013 LECTURE 19: TABLES.

Company Employees Founded

ACME Inc 1000 1947

XYZ Corp 2000 1973

<table>

</table>

<tr>

<tr>

<tr>

</tr>

</tr>

</tr>

<td>

<td>

<td>

<td>

<td>

<td>

<td>

<td>

<td>

</td>

</td>

</td>

</td>

</td>

</td>

</td>

</td>

</td>

Column Column Column

Page 11: Web Foundations MONDAY, OCTOBER 28, 2013 LECTURE 19: TABLES.

Tables

The Basic Table with Border

http://faculty.cascadia.edu/cduckett/foundations/tables/basic2.html

<table border=1>

Page 12: Web Foundations MONDAY, OCTOBER 28, 2013 LECTURE 19: TABLES.

Tables

Firefox

<table border=8>

Internet Explorer Chrome

http://faculty.cascadia.edu/cduckett/foundations/tables/basic2a.html

Page 13: Web Foundations MONDAY, OCTOBER 28, 2013 LECTURE 19: TABLES.

Firefox<style>table{ border-color: #000; border-width: 8px; border-style: solid; /* Same as: border: 8px solid #000; */}

td { border-color: #369; border-width: 2px; border-style: solid; /* Same as: border: 2px solid #369; */}</style>

Internet Explorer

Chrome

http://faculty.cascadia.edu/cduckett/foundations/tables/basic2b.html

Tables: Borders Made Using CSS

Page 15: Web Foundations MONDAY, OCTOBER 28, 2013 LECTURE 19: TABLES.

Tables

The Basic Table with Table Header Tags and Background Colors

http://faculty.cascadia.edu/cduckett/foundations/tables/basic4.html

Page 16: Web Foundations MONDAY, OCTOBER 28, 2013 LECTURE 19: TABLES.

Additional Table Tags

Caption

http://faculty.cascadia.edu/cduckett/foundations/tables/basic5.html

Page 17: Web Foundations MONDAY, OCTOBER 28, 2013 LECTURE 19: TABLES.

Additional Table Tags

Border Collapse with CSS table{ border-collapse:collapse;}

http://faculty.cascadia.edu/cduckett/foundations/tables/basic6.html

From this…

to this…

Page 18: Web Foundations MONDAY, OCTOBER 28, 2013 LECTURE 19: TABLES.

Additional Table Tags

Table Padding with CSS td{ padding:15px;}

http://faculty.cascadia.edu/cduckett/foundations/tables/basic7.html

Page 19: Web Foundations MONDAY, OCTOBER 28, 2013 LECTURE 19: TABLES.

Additional Table Tags

Alignment with CSS td{ text-align:right;}

http://faculty.cascadia.edu/cduckett/foundations/tables/basic8.html

Page 20: Web Foundations MONDAY, OCTOBER 28, 2013 LECTURE 19: TABLES.

Height and Vertical Alignment with CSS td{ height:50px; vertical-align:top;}

http://faculty.cascadia.edu/cduckett/foundations/tables/basic9.html

Additional Table Tags

Page 21: Web Foundations MONDAY, OCTOBER 28, 2013 LECTURE 19: TABLES.

Additional Table Tags

Table Width with CSS

table{ width:50%;}

td{ width:150px;}

or

http://faculty.cascadia.edu/cduckett/foundations/tables/basic10.html

http://faculty.cascadia.edu/cduckett/foundations/tables/basic11.html

Page 22: Web Foundations MONDAY, OCTOBER 28, 2013 LECTURE 19: TABLES.

Row Groups

THEAD, TFOOT, and TBODY

http://faculty.cascadia.edu/cduckett/foundations/tables/basic12.html

Page 23: Web Foundations MONDAY, OCTOBER 28, 2013 LECTURE 19: TABLES.

Spanning

Column and Row Spanning

http://faculty.cascadia.edu/cduckett/foundations/tables/basic13.html

Page 24: Web Foundations MONDAY, OCTOBER 28, 2013 LECTURE 19: TABLES.

Spanning

Column and Row Spanning

Column Span

Row Span

Row

RowRowRow

Column Column Column

Page 25: Web Foundations MONDAY, OCTOBER 28, 2013 LECTURE 19: TABLES.

Spanning

Column and Row Spanning

http://faculty.cascadia.edu/cduckett/foundations/tables/basic13a.html

Page 26: Web Foundations MONDAY, OCTOBER 28, 2013 LECTURE 19: TABLES.

Spanning

Column and Row Spanning

http://faculty.cascadia.edu/cduckett/foundations/tables/basic14.html

Page 27: Web Foundations MONDAY, OCTOBER 28, 2013 LECTURE 19: TABLES.

Table Inside a Table

http://faculty.cascadia.edu/cduckett/foundations/tables/basic15.html