Responsive/Scrollable Table

PHOTO EMBED

Sun Aug 23 2026 06:42:13 GMT+0000 (Coordinated Universal Time)

Saved by @omnixima #css

@media (max-width: 767px) {
  .simple-table {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  .simple-table table {
    width: 100%;
    min-width: 640px;
  }

  .simple-table table th,
  .simple-table table td {
    overflow-wrap: normal;
    word-break: normal;
  }
}
content_copyCOPY