Skip to content

DigitalA11Y

Your Accessibility Partner

  • Home
  • ServicesExpand
    • WCAG Audit Services
    • VPAT/ACR Services
    • Accessibility Consulting
    • PDF Remediation
    • Accessibility Trainings
    • Website Remediation
    • Design Audit
  • Free ToolsExpand
    • Accessibility Checker
    • A11Y Cost Calculator
    • A11Y Bookmarklets
    • Color Contrast Extension
    • WCAG Contrast Checker
  • ResourcesExpand
    • A11Y Articles
    • WCAG Primer
    • ARIA Cheatsheet
    • A11Y Tools
    • A11Y Patterns
    • A11Y Cheatsheets
  • Contact
Search
DigitalA11Y
Your Accessibility Partner
Search

Table with Added Headers in a Narrow View

My Hobbies
Name Description Additional Resources
Name: Playing Soccer Description: Soccer is a team sport played between two teams of eleven players with a spherical ball. Additional Resources: Wikipedia
Name: Dancing Description: Dance is a performing art form consisting of purposefully selected sequences of human movement. Additional Resources: Wikipedia
Name: Gardening Description: Gardening is the practice of growing and cultivating plants as part of horticulture. Additional Resources: Wikipedia

Code

  • HTML
  • CSS
  • JavaScript
<table role="grid">
  <caption>My Hobbies</caption>
  <thead role="presentation">
    <tr role="row">
      <th role="columnheader">
        Name
      </th>
      <th role="columnheader">
        Description
      </th>
      <th role="columnheader">
        Additional Resources
      </th>
    </tr>
  </thead>
  <tbody role="presentation">
    <tr role="row">
      <th role="rowheader">
        <span aria-hidden="true" class="narrow-th">Name: </span>Playing Soccer
      </th>
      <td role="gridcell">
        <span aria-hidden="true" class="narrow-th">Description: </span>Soccer is a team sport played between two teams of eleven players with a spherical ball.
      </td>
      <td role="gridcell">
        <span aria-hidden="true" class="narrow-th">Additional Resources: </span><a href="https://en.wikipedia.org/wiki/Association_football">Wikipedia</a>
      </td>
    </tr>
    <tr role="row">
      <th role="rowheader">
        <span aria-hidden="true" class="narrow-th">Name: </span>Dancing
      </th>
      <td role="gridcell">
        <span aria-hidden="true" class="narrow-th">Description: </span>Dance is a performing art form consisting of purposefully selected sequences of human movement.
      </td>
      <td role="gridcell">
        <span aria-hidden="true" class="narrow-th">Additional Resources: </span><a href="https://en.wikipedia.org/wiki/Dance">Wikipedia</a>
      </td>
    </tr>
    <tr role="row">
      <th role="rowheader">
        <span aria-hidden="true" class="narrow-th">Name: </span>Gardening
      </th>
      <td role="gridcell">
        <span aria-hidden="true" class="narrow-th">Description: </span>Gardening is the practice of growing and cultivating plants as part of horticulture.
      </td>
      <td role="gridcell">
        <span aria-hidden="true" class="narrow-th">Additional Resources: </span><a href="https://en.wikipedia.org/wiki/Gardening">Wikipedia</a>
      </td>
    </tr>
  </tbody>
</table>
table {
  border-collapse: collapse;
}

thead th {
  background-color: lightpink;
}

tbody th {
  background-color: lightgreen;
}

th, td {
  border: 1px solid;
}

.narrow-th {
  font-weight: bold;
  background-color: yellow;
}

@media only screen and (max-width: 600px) {
  table {
    display: block;
    border-bottom: 1px solid;
  }

  caption, tr, tbody {
    display: block;
  }

  thead {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  td, th {
    border-bottom: 0;
    padding: 4px 8px;
    display: block;
  }

  th {
    text-align: left;
  }
}
@media only screen and (min-width: 601px) {
  .narrow-th {
    display: none;
  }
}
NIL

Company

  • About
  • Blog
  • Careers
  • Contact

Services

  • Accessibility Audits
  • Accessibility Consulting
  • VPAT/ACR
  • Accessibility Trainings

Compliance

  • WCAG
  • ADA
  • Section 508
  • EN 301 549
  • EAA
  • AODA Compliance Services — Make Your Digital Assets Accessible in Ontario
  • ACA

Resources

  • Accessibility Resources
  • Understanding WCAG
  • WCAG Checklist
  • Understanding WAI-ARIA

Legal

  • Privacy Policy
  • Terms and Conditions
  • Disclaimer
  • Accessibility Statement for digitala11y.com
  • Sitemap

© 2025 DigitalA11Y
All Rights Reserved

Linkedin Twitter Facebook Instagram YouTube

DigitalA11Y
Plot No 108, 3rd Cross Rd, Saipuri Colony,
Hastinapuri Colony, Sainikpuri, Secunderabad -500094
Telangana, India.

Tel:(+91)99082 66680,
E-mail: [email protected]

Scroll to top
  • Home
  • Services
    • WCAG Audit Services
    • VPAT/ACR Services
    • Accessibility Consulting
    • PDF Remediation
    • Accessibility Trainings
    • Website Remediation
    • Design Audit
  • Free Tools
    • Accessibility Checker
    • A11Y Cost Calculator
    • A11Y Bookmarklets
    • Color Contrast Extension
    • WCAG Contrast Checker
  • Resources
    • A11Y Articles
    • WCAG Primer
    • ARIA Cheatsheet
    • A11Y Tools
    • A11Y Patterns
    • A11Y Cheatsheets
  • Contact