CSS - Horizontal scrolling tables

Hi @JayKim

This works on mine for the second part of your request. I’ll see if I can get the stretch part working too:

.markdown-preview-view table {
  display: block;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
  overflow-x: auto;
  white-space: nowrap;
}