Last active
March 30, 2026 15:48
-
-
Save iamkingsleyf/70a86a39c906c922ab77f3ee5b724112 to your computer and use it in GitHub Desktop.
make wordpress table responsive
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .wp-block-table { | |
| overflow-x: auto; | |
| display: block; | |
| width: 100%; | |
| -webkit-overflow-scrolling: touch; | |
| } | |
| .wp-block-table table { | |
| width: 100%; | |
| min-width: 600px; /* or higher if your table has many columns */ | |
| border-collapse: collapse; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment