Title: Table issues (need scroll)
Last modified: October 24, 2024

---

# Table issues (need scroll)

 *  Resolved [Davinder](https://wordpress.org/support/users/davinderschiedel/)
 * (@davinderschiedel)
 * [1 year, 6 months ago](https://wordpress.org/support/topic/table-issues-need-scroll/)
 * Is there a way to add code to the table block CSS so that tables like this have
   a scrollbar on mobile?
 * At the moment it tries to expand.
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Ftable-issues-need-scroll%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [Mary Hubbard](https://wordpress.org/support/users/4thhubbard/)
 * (@4thhubbard)
 * [1 year, 6 months ago](https://wordpress.org/support/topic/table-issues-need-scroll/#post-18109986)
 * You can try and add CSS for Responsive Table Scroll through **Appearance > Customize**
   and select **Additional CSS**.
 *     ```wp-block-code
          /* Wrap tables in a scrollable container on small screens */
          @media (max-width: 768px) {
              .wp-block-table {
                  overflow-x: auto;
                  display: block;
                  white-space: nowrap;
              }
          }
       ```
   
 * `overflow-x: auto;` property allows horizontal scrolling, while `white-space:
   nowrap;` prevents the table from wrapping, keeping it within a single scrollable
   line.
 *  Thread Starter [Davinder](https://wordpress.org/support/users/davinderschiedel/)
 * (@davinderschiedel)
 * [1 year, 6 months ago](https://wordpress.org/support/topic/table-issues-need-scroll/#post-18120174)
 * Excellent. Works well.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Table issues (need scroll)’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/twentytwentyfour/1.5/screenshot.
   png)
 * Twenty Twenty-Four
 * [Support Threads](https://wordpress.org/support/theme/twentytwentyfour/)
 * [Active Topics](https://wordpress.org/support/theme/twentytwentyfour/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/twentytwentyfour/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/twentytwentyfour/reviews/)

## Tags

 * [mobile](https://wordpress.org/support/topic-tag/mobile/)
 * [scroll](https://wordpress.org/support/topic-tag/scroll/)
 * [table](https://wordpress.org/support/topic-tag/table/)

 * 3 replies
 * 2 participants
 * Last reply from: [Davinder](https://wordpress.org/support/users/davinderschiedel/)
 * Last activity: [1 year, 6 months ago](https://wordpress.org/support/topic/table-issues-need-scroll/#post-18120174)
 * Status: resolved