diff --git a/docs/quick_reference.html b/docs/quick_reference.html index 0edd22a..06efa8f 100644 --- a/docs/quick_reference.html +++ b/docs/quick_reference.html @@ -456,7 +456,7 @@
<form> <fieldset> <legend>Simple form</legend> @@ -480,7 +480,7 @@
<div class="input-group"> <input type="checkbox" id="check1" tabindex="0"> <label for="check1">Checkbox</label> @@ -500,7 +500,7 @@
<button>Default button</button> <input type="button" class="primary" value="Primary button"> <input type="reset" class="secondary" value="Secondary button"> @@ -527,7 +527,7 @@
<input type="file" id="file-input"> <label for="file-input" class="button">Upload file...</label>
<table> <caption>People</caption> <thead> @@ -587,7 +587,7 @@
<table class="horizontal"> <caption>People</caption> <thead> @@ -625,7 +625,7 @@
<table class="preset"> <caption>Star Wars Character Alignment Table</caption> <tbody> @@ -664,9 +664,6 @@ <tbody> <!-- ... --> </tbody> - <tfoot> - <!-- ... --> - </tfoot> </table>
<div class="row"> <div class="card"> <div class="section"> @@ -712,7 +709,7 @@
<div class="card"> <img src="..." class="section media"> <div class="section double-padded"><p>Content</p></div> @@ -733,7 +730,7 @@
<div class="card small"> <div class="section"> <p>Content</p> @@ -772,7 +769,7 @@
<div class="tabs"> <input type="radio" name="tab-group" id="tab1" checked aria-hidden="true"> <label for="tab1" aria-hidden="true">Tab 1</label> @@ -803,7 +800,7 @@
<div class="tabs stacked"> <input type="radio" name="accordion" id="a1" checked aria-hidden="true"> <label for="a1" aria-hidden="true">Accordion section 1</label> @@ -850,7 +847,7 @@
<mark>primary</mark> <mark class="secondary">secondary</mark> <mark class="tertiary">tertiary</mark> @@ -866,7 +863,7 @@
<div class="alert"> <h3>This is an alert</h3> <p>Make sure you read this!</p> @@ -889,7 +886,7 @@
<div class="alert animated"> <h3>Animated alert</h3> </div> diff --git a/docs/table.html b/docs/table.html index 3e10494..cc05a72 100644 --- a/docs/table.html +++ b/docs/table.html @@ -267,8 +267,8 @@@@ -494,9 +494,6 @@ <tbody> <!-- ... --> </tbody> - <tfoot> - <!-- ... --> - </tfoot> </table><tr> <td>Chad</td> - <>Wilberts</td> - <>MrOne</td> + <td>Wilberts</td> + <td>MrOne</td> </tr>Don't: Remember to always add a
data-label
attribute to your<td>
elements, as the table's card view is very dependent on them to display properly.<th>
elements, however, do not require or utilize this attribute.