Allow markdown table to scroll

`overflow:auto` isn't effective when a table is wider than the container. Adding `display:block` fixes this issue.
This commit is contained in:
pgodwin 2018-07-09 16:12:15 +10:00 committed by GitHub
parent 3e445cce06
commit 37312144e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -248,6 +248,7 @@
overflow:auto; overflow:auto;
word-break:normal; word-break:normal;
word-break:keep-all; word-break:keep-all;
display:block;
} }
table th { table th {