Add section of binary search tree.

Make all table align center.
This commit is contained in:
krahets
2022-11-15 04:55:19 +08:00
parent 7fdb4d1443
commit 2f8829d3f6
4 changed files with 160 additions and 2 deletions

View File

@@ -23,3 +23,5 @@ TODO
| 更新:列表 Java 代码、配图 | 2022-11-07 |
| 新增:栈与队列 | 2022-11-09 |
| 新增:树 | 2022-11-12 |
| 新增:二叉搜索树,<br />更新:二叉树、表格居中 | 2022-11-13 |
| 更新:二叉搜索树 | 2022-11-14 |

View File

@@ -19,4 +19,14 @@
--md-typeset-color: #FEFEFE;
--md-typeset-a-color: #31BC5A;
}
}
/* Center Markdown Tables (requires md_in_html extension) */
.center-table {
text-align: center;
}
.md-typeset .center-table :is(td,th):not([align]) {
/* Reset alignment for table cells */
text-align: initial;
}