浏览代码

Allow markdown table to scroll (#4401)

* Allow markdown table to scroll

`overflow:auto` isn't effective when a table is wider than the container. Adding `display:block` fixes this issue.
tags/v1.9.0-dev
pgodwin 5 年前
父节点
当前提交
832bf218ec
共有 2 个文件被更改,包括 2 次插入1 次删除
  1. 1
    1
      public/css/index.css
  2. 1
    0
      public/less/_markdown.less

+ 1
- 1
public/css/index.css
文件差异内容过多而无法显示
查看文件


+ 1
- 0
public/less/_markdown.less 查看文件

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

table th {

正在加载...
取消
保存