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>Navigating a Scrolling Container</h1>

<p>
  The text in the table is large (200%) to try to force the horizontal scroll. If you still see no scroll bar on the table container, make your window smaller.
</p>

<div id="Meh">
  <p>
    <label for="Landing">Cursor landing spot:</label><br>
    <input type="text" id="Landing">
    <button type="button">Does Nothing</button>
  </p>
  
  <p>
    This text field is here solely so you can give it focus, which is explained in the post.
  </p>
</div>



<div class="caret-reliance">
    <table>
    <caption id="Caption01">Books in a Scrolling Container</caption>
    <thead>
      <tr>
        <th>Author</th>
        <th>Title</th>
        <th>Year</th>
        <th>ISBN-13</th>
        <th>ISBN-10</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td>Miguel De Cervantes</td>
        <td>The Ingenious Gentleman Don Quixote of La Mancha</td>
        <td>1605</td>
        <td>9783125798502</td>
        <td>3125798507</td>
      </tr>
      <tr>
        <td>Gabrielle-Suzanne Barbot de Villeneuve</td>
        <td lang="fr">La Belle et la Bête</td>
        <td>1740</td>
        <td>9781910880067</td>
        <td>191088006X</td>
      </tr>
      <tr>
        <td>Sir Isaac Newton</td>
        <td>The Method of Fluxions and Infinite Series: With Its Application to the Geometry of Curve-lines</td>
        <td>1763</td>
        <td>9781330454862</td>
        <td>1330454863</td>
      </tr>
      <tr>
        <td>Mary Shelley</td>
        <td>Frankenstein; or, The Modern Prometheus</td>
        <td>1818</td>
        <td>9781530278442</td>
        <td>1530278449</td>
      </tr>
      <tr>
        <td>Herman Melville</td>
        <td>Moby-Dick; or, The Whale</td>
        <td>1851</td>
        <td>9781530697908</td>
        <td>1530697905</td>
      </tr>
      <tr>
        <td >Emma Dorothy Eliza Nevitte Southworth</td>
        <td>The Hidden Hand</td>
        <td>1888</td>
        <td>9780813512969</td>
        <td>0813512964</td>
      </tr>
      <tr>
        <td>F. Scott Fitzgerald</td>
        <td>The Great Gatsby</td>
        <td>1925</td>
        <td>9780743273565</td>
        <td>0743273567</td>
      </tr>
      <tr>
        <td>George Orwell</td>
        <td>Nineteen Eighty-Four</td>
        <td>1948</td>
        <td>9780451524935</td>
        <td>0451524934</td>
      </tr>
      <tr>
        <td>Nnedi Okorafor</td>
        <td>Who Fears Death</td>
        <td>2010</td>
        <td>9780756406691</td>
        <td>0756406692</td>
      </tr>
    </tbody>
  </table>
</div>

<p>
  Donec convallis sodales risus ut lobortis. Donec egestas tincidunt sem vitae maximus. Aenean eu auctor orci. Sed dignissim ante id mauris tempor venenatis. Pellentesque tempor, ex sit amet malesuada imperdiet, libero nisi pellentesque sem, at scelerisque dolor neque bibendum urna. Vivamus bibendum augue metus. Maecenas finibus felis quis arcu mattis, vel hendrerit risus feugiat.
</p>

<p>
  Table adapted from the post <cite><a href="https://adrianroselli.com/2020/11/under-engineered-responsive-tables.html">Under-Engineered Responsive Tables</a></cite>, and this entire experiment used in <cite><a href="https://adrianroselli.com/2022/06/keyboard-only-scrolling-areas.html">Keyboard-Only Scrolling Areas</a></cite>.
</p>
              
            
!

CSS

              
                body {
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  line-height: 1.4;
  /*   line-height: 1.5; */
  /*   letter-spacing: 0.12em; */
  /*   word-spacing: 0.16em; */
  margin: 1em 1.5em;
}

#Meh {
  display: flex;
  gap: 1em;
}

#Meh input {
  width: 5em;
}

#Meh p:first-child {
  min-width: max-content;
}

/* Standard Tables */

table {
  margin: 1em 0;
  border-collapse: collapse;
  border: 0.1em solid #d6d6d6;
}

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: #666;
  color: #fff;
}

tr:nth-child(even) th[scope="row"] {
  background-color: #f2f2f2;
}

tr:nth-child(odd) th[scope="row"] {
  background-color: #fff;
}

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

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

tr td:nth-child(1) {
  min-width: 10em;
  max-width: 90vw;
}

tr td:nth-child(2) {
  font-style: italic;
  min-width: 12em;
  max-width: 90vw;
}

tr *:nth-child(3) {
  text-align: right;
}

/* Responsive Tables */

.caret-reliance {
  overflow: auto;
  border: 0.1em solid #d6d6d6;
  font-size: 200%;
}

.caret-reliance:focus {
/*   box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.5); */
  outline: 0.1em solid rgba(0, 204, 0, 1);
}

.caret-reliance:focus-within {
/*   box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.5); */
  outline: 0.1em solid rgba(204, 0, 0 , 1);
}

.caret-reliance table {
  margin: 0;
  border: none;
}

/* Scrolling Visual Cue */

.caret-reliance {
  background: linear-gradient(to right, #fff 30%, rgba(255, 255, 255, 0)),
    linear-gradient(to right, rgba(255, 255, 255, 0), #fff 70%) 0 100%,
    radial-gradient(
      farthest-side at 0% 50%,
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0)
    ),
    radial-gradient(
        farthest-side at 100% 50%,
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0)
      )
      0 100%;
  background-repeat: no-repeat;
  background-color: #fff;
  background-size: 40px 100%, 40px 100%, 14px 100%, 14px 100%;
  background-position: 0 0, 100%, 0 0, 100%;
  background-attachment: local, local, scroll, scroll;
}
              
            
!

JS

              
                
              
            
!
999px

Console