Data tables present tabular information in a grid. They are made up of columns and rows that communicate the meaning of the information and relationships between data. There are several options for styling your data in tables to allow for a clean, visually appealing look.
The use of HTML tables is reserved for displaying data in an organized manner. It is not proper to use table code to control webpage layout or design. To display content on your webpage in multiple columns, please refer to the Boxed Sections Snippets or the List Spread Buttons Snippet.
View different table styles in the Style Guide.
Items marked with * are required for accessibility.
Insert Table
From the table icon in the editor go to Insert Table and select the number of rows and columns for the table. Insert the data into the appropriate fields.
General Table Properties
Using the table icon or right clicking on the table, go to Table Properties.
- Width: Used to scale the width of the table, defined in percentage (e.g. use 50% to reduce the width of the table by half). This would evenly size all columns. A better option is to use min-width in the Style field of the Advanced Table Properties (see below) so that your tables look good both a desktop and mobile devices.
- Height: Used to scale the height of the table, defined in percentage (e.g. use 50% to reduce the height of the table by half). We do not recommend using this property.
- Cell Spacing: Defines spacing between cells. Typically the default is sufficient.
- Cell Padding: Defines padding within the cell between the border and the text. Typically the default is sufficient.
- Border Width: Defines the thickness of cell border. This property is not required when using the “auto striped” CSS class. Using this field creates an inaccessible table. Instead apply class of “lines” (see below).
- Caption*: Adds a caption field above the table. This field is used for a table heading. All tables are required to have a heading using either this caption or a regular heading immediately before the table.
- Alignment: Aligns the page on the table; options are Left, Center, and Right
- Class: Applies CSS from the Styles drop-down to the table. In order to create a striped table you can select “(custom)” then type “auto striped” or “striped” (without quotation marks) in the blank field below it. Auto striped will automatically alternate stripes on the rows in the table and is recommended. If you use striped you must designate the alternate rows in the code view by adding class=”alt” to the <tr>. You can also begin creating a sortable table by typing “striped table-sortable data” (without quotation marks) in the custom class field. More instructions for completing this type of table setup is at the end of this post. One other class you can use is “lines” (without quotation marks) to show the cell borders as an alternative to the Border field.
Advanced Table Properties
In the Table Properties window, select the Advanced tab.
- Border Style: Can be used to select the style of the border lines, if turned on.
- Border Color: Enter a hex code (e.g. #000EEE) to color the borders of your table. This property is typically not needed.
- Background Color: Enter a hex code (e.g. #000EEE) to color the background of your table. This property is typically not needed, but if used the color contrast between the background and the text must meet accessibility requirements.
General Cell Properties
When you have one or more cells selected, right click or go to the table icon, go to Cell and choose Cell Properties.
- Width: Used to set the width of the cell, defined in percentage (e.g. use 50% to have this cell be half of the table width). The sum of the widths of each cell within a row must equal 100%.
- Height: Used to scale the height of the cell, defined in percentage (e.g. use 50% to reduce the height of the cell by half). This property is typically not needed.
- Cell Type: If the content in the cell is a heading, select Heading from this dropdown. You must then select the scope.
- Scope*: When a cell is a heading, you must define whether it is a heading for the row or the column. Select the appropriate choice from the dropdown. A scope of row means the heading is for the cells to the right of it, col means it is the heading for the cells below it.
- H Align: Sets the horizontal alignment of the content in the cell. This property is typically not needed.
- V Align: Sets the vertical alignment of the content in the cell. This property is typically not needed.
- Class: Applies CSS from the Styles drop-down to the cell. If you want to create a white row in an auto striped table you can merge the cells in the row, then select (custom) here and type “spacer” (without quotation marks) in the blank field beneath it. This field could still have content in it.
Advanced Cell Properties
In the Cell Properties window, select the Advanced tab.
- Border Width: Defines the thickness of cell border. This property is not required when using the “auto striped” CSS class. Using this field creates an inaccessible table.
- Border Style: Can be used to select the style of the border lines for the row, if turned on.
- Border Color: Enter a hex code (e.g. #000EEE) to color the borders of your table. This property is typically not needed.
- Background Color: Enter a hex code (e.g. #000EEE) to color the background of your table. This property is typically not needed, but if used the color contrast between the background and the text must meet accessibility requirements.
General Row Properties
With your cursor in a cell in the row or the entire row selected, right click or go to the table icon, go to Row and choose Row Properties.
- Row Type: If you are including a row at the bottom of your table for notes or references, select Footer from this dropdown. This will automatically style the content as notes. For the heading row, select Heading, otherwise it should be Body.
- Alignment: Choose the alignment of the content in the row.
- Height: Used to scale the height of the row, defined in percentage (e.g. use 50% to reduce the height of the row by half). This property is typically not needed.
- Class: Applies CSS from the Styles drop-down to the row.
Advanced Row Properties
In the Row Properties window, select the Advanced tab.
- Border Style: Can be used to select the style of the border lines for the row, if turned on.
- Border Color: Enter a hex code (e.g. #000EEE) to color the borders of your table. This property is typically not needed.
- Background Color: Enter a hex code (e.g. #000EEE) to color the background of your table. This property is typically not needed, but if used the color contrast between the background and the text must meet accessibility requirements.
Table With Lines
To make a table with the borders turned on, such as:
Column 1 | Column 2 | Column 3 |
First Cell | Second Cell | Third Cell |
Fourth Cell | Fifth Cell | Sixth Cell |
- In the General Table Properties select “(custom)” from the Class dropdown.
- In the blank field that appears, enter “lines” (without quotation marks) and click OK.
Basic Sortable Table
A sortable table allows the user to sort the table by any of the columns. Creating this type of table does require a small amount of code editing. You can also add caption or footer content to these tables, but not spacer rows.
- In the General Table Properties select “(custom)” from the Class dropdown.
- In the blank field that appears, enter “striped table-sortable” (without quotation marks) and click OK.
- Enter your content in the fields as needed.
- Change to the code view.
- Find the table code. It should begin with <table class=”striped table-sortable data” . . .
- The first row of the table must be designated as a header row. If it is not already, change the code to make the header row (<thead> and </thead> around the cells). After the <table> tag it should look like:
<thead> <tr> <th scope="col">First Column Header</th> <th scope="col">Second Column Header</th> <th scope="col">Third Column Header</th> . . . </tr> </thead> <tbody> (the rest of your table content)
- Add the class attributes to the header cells. The column you want the information to be sorted by default should get a class of “table-th-sort header”, the rest should get a class of “header”. The beginning of your table code should now look something like:
<table class="striped table-sortable data"> <thead> <tr> <th scope="col" class="table-th-sort header">First Column Header</th> <th scope="col" class="header">Second Column Header</th> <th scope="col" class="header">Third Column Header</th> . . . </tr> </thead> <tbody> . . .
- Click the OK button to save the code changes. Your table should now have arrows next to each column heading and when you save the content in the editor, you should be able to interact with the table in the Preview screen.
Sortable Tables with Custom Sort Titles for Cells
This advanced use of sortable tables would allow you to define the text used to sort for each cell. For example, if your cell includes a person’s name with the first name followed by the last name, but you want the sort to go by last name, you can set that with this table. Creating this type of table does require quite a bit of code editing.You can also add caption or footer content to these tables, but not spacer rows.
- In the General Table Properties select “(custom)” from the Class dropdown.
- In the blank field that appears, enter “striped table-sortable data” (without quotation marks) and click OK.
- Enter your content in the fields as needed.
- Change to the code view.
- Find the table code. It should begin with <table class=”striped table-sortable data” . . .
- The first row of the table must be designated as a header row. If it is not already, change the code to make the header row (<thead> and </thead> around the cells). After the <table> tag it should look like:
<thead> <tr> <th scope="col">First Column Header</th> <th scope="col">Second Column Header</th> <th scope="col">Third Column Header</th> . . . </tr> </thead> <tbody> (the rest of your table content)
- Add the class and data-parser attributes to the header cells. The column you want the information to be sorted by default should get a class of “table-th-sort header”, the rest should get a class of “header”, and they all need data-parser=”title”. The beginning of your table code should now look something like:
<table class="striped table-sortable data"> <thead> <tr> <th scope="col" class="table-th-sort header" data-parser="title">First Column Header</th> <th scope="col" class="header" data-parser="title">Second Column Header</th> <th scope="col" class="header" data-parser="title">Third Column Header</th> . . . </tr> </thead> <tbody> . . .
- Each cell in the rest of your table (look for <td> then needs a title attribute that lists the content that will be used for alphabetizing. For example, if you have a field that is their name (first, last) and you want the table to sort by their last name you could designate the content with the last name first in this attribute. You must include some value in the quotation marks for title=”” or the column will not sort properly. Here is an example of what the <tbody> section of your table could look like:
<tbody> <tr> <td title="Rockwell, John J.">John J. Rockwell</td> <td title="1979, Rockwell">1979</td> <td title="Business Administration, Rockwell">Business Administration</td> </tr> <tr> <td title="Bernard, William J."><a href="{{f:18483798}}">William J. Bernard, Jr.</a></td> <td title="1969, Bernard">1969</td> <td title="Metallurgical and Materials Engineering, Bernard">Metallurgical and Materials Engineering</td> </tr> <tr> <td title="Nowosad, Joseph"><a href="{{f:18484643}}">Joseph M. Nowosad</a></td> <td title="1987, Nowosad">1987</td> <td title="Metallurgical and Materials Engineering, Nowosad">Metallurgical and Materials Engineering</td> </tr> </tbody>
- Your full table code could look like:
<table class="striped table-sortable data"> <thead> <tr> <th scope="col" class="table-th-sort header" data-parser="title">Name</th> <th scope="col" class="header" data-parser="title">Class Year</th> <th scope="col" class="header" data-parser="title">Major</th> </tr> </thead> <tbody> <tr> <td title="Rockwell, John J.">John J. Rockwell</td> <td title="1979, Rockwell">1979</td> <td title="Business Administration, Rockwell">Business Administration</td> </tr> <tr> <td title="Bernard, William J."><a href="{{f:18483798}}">William J. Bernard, Jr.</a></td> <td title="1969, Bernard">1969</td> <td title="Metallurgical and Materials Engineering, Bernard">Metallurgical and Materials Engineering</td> </tr> <tr> <td title="Nowosad, Joseph"><a href="{{f:18484643}}">Joseph M. Nowosad</a></td> <td title="1987, Nowosad">1987</td> <td title="Metallurgical and Materials Engineering, Nowosad">Metallurgical and Materials Engineering</td> </tr> </tbody> </table>
- Click the OK button to save the code changes. Your table should now have arrows next to each column heading and when you save the content in the editor, you should be able to interact with the table in the Preview screen.