Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <h1>Demo: Uniquely Labeling Fields in Table v2</h1>

<table>
  <caption>Books I May or May Not Have Read</caption>
  <tr>
    <th id="ColFlag">Flag</th>
    <th id="ColAuthor">Author</th>
    <th id="ColTitle">Title</th>
    <th id="ColYear">Year</th>
    <th id="ColISBN13">ISBN-13</th>
    <th id="ColClaimed">Claimed by</th>
    <th id="ColRemove">Remove</th>
  </tr>
  <tr>
    <td><input type="checkbox" id="f01" aria-labelledby="Row01 ColFlag"></td>
    <th scope="row" id="Row01">Miguel De Cervantes</th>
    <td>The Ingenious Gentleman Don Quixote of La Mancha</td>
    <td>1605</td>
    <td>9783125798502</td>
    <td><input type="text" id="c01" aria-labelledby="Row01 ColClaimed"></td>
    <td><button type="button" id="b01" aria-labelledby="b01 Row01">Remove</button></td>
  </tr>
  <tr>
    <td><input type="checkbox" id="f02" aria-labelledby="Row02 ColFlag"></td>
    <th scope="row" id="Row02">Mary Shelley</th>
    <td>Frankenstein; or, The Modern Prometheus</td>
    <td>1818</td>
    <td>9781530278442</td>
    <td><input type="text" id="c02" aria-labelledby="Row02 ColClaimed"></td>
    <td><button type="button" id="b02" aria-labelledby="b02 Row02">Remove</button></td>
  </tr>
  <tr>
    <td><input type="checkbox" id="f03" aria-labelledby="Row03 ColFlag"></td>
    <th scope="row" id="Row03">Herman Melville</th>
    <td>Moby-Dick; or, The Whale</td>
    <td>1851</td>
    <td>9781530697908</td>
    <td><input type="text" id="c03" aria-labelledby="Row03 ColClaimed"></td>
    <td><button type="button" id="b03" aria-labelledby="b03 Row03">Remove</button></td>
  </tr>
  <tr>
    <td><input type="checkbox" id="f04" aria-labelledby="Row04 ColFlag"></td>
    <th scope="row" id="Row04">Emma Dorothy Eliza Nevitte Southworth</th>
    <td>The Hidden Hand</td>
    <td>1888</td>
    <td>9780813512969</td>
    <td><input type="text" id="c04" aria-labelledby="Row04 ColClaimed"></td>
    <td><button type="button" id="b04" aria-labelledby="b04 Row04">Remove</button></td>
  </tr>
  <tr>
    <td><input type="checkbox" id="f05" aria-labelledby="Row05 ColFlag"></td>
    <th scope="row" id="Row05">F. Scott Fitzgerald</th>
    <td>The Great Gatsby</td>
    <td>1925</td>
    <td>9780743273565</td>
    <td><input type="text" id="c05" aria-labelledby="Row05 ColClaimed"></td>
    <td><button type="button" id="b05" aria-labelledby="b05 Row05">Remove</button></td>
  </tr>
  <tr>
    <td><input type="checkbox" id="f06" aria-labelledby="Row06 ColFlag"></td>
    <th scope="row" id="Row06">George Orwell</th>
    <td>Nineteen Eighty-Four</td>
    <td>1948</td>
    <td>9780451524935</td>
    <td><input type="text" id="c06" aria-labelledby="Row06 ColClaimed"></td>
    <td><button type="button" id="b06" aria-labelledby="b06 Row06">Remove</button></td>
  </tr>
</table>

<p>
  This is used in my blog post <a href="http://adrianroselli.com/2019/05/uniquely-labeling-fields-in-a-table.html">Uniquely Labeling Fields in a Table</a>.
</p>
              
            
!

CSS

              
                body {
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  line-height: 1.4;
  color: #333;
  background-color: #eee;
}

table {
  margin: 1em 0;
  border-collapse: collapse;
  border: 0.1em solid rgba(0, 0, 0, 0.1);
}

caption {
  text-align: left;
  font-style: italic;
  padding: 0.25em 0.5em 0.5em 0.5em;
}

th,
td {
  padding: 0.25em 0.5em 0.25em 1em;
  vertical-align: text-top;
  text-align: left;
  text-indent: -0.5em;
}

th {
  vertical-align: bottom;
  background-color: rgba(0, 0, 0, 0.1);
}

th[scope=row] {
  vertical-align: top;
}

tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.05);
}

tr:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

td:nth-of-type(3) {
  font-style: italic;
}

th:nth-of-type(4),
td:nth-of-type(4) {
  text-align: right;
}

table td > input[type=text], #Sample + table td > button {
  font: inherit;
  border: .1em solid #666;
  width: 7em;
}
              
            
!

JS

              
                
              
            
!
999px

Console