nerdy tidbits*

Obsidian 表格使用 Advance Tables 插件

2021.09.21

Advanced Tables 插件的使用比较简单,见视频演示。不过 minimal 主题的表格样式有些简单,可以在 css 文件中简单的修改。

修改之后的代码如下:

/* Tables */

.markdown-preview-view th {
  font-weight:var(--bold-weight);
  font-style: italic;
  color: #e87d3e;
  padding-left: 2;
  /* font-style: italic; */
  /* color:#b05279; */
  /* text-align:left; */
  /* padding-left:2; */
  /* border-top:none; */
}
.markdown-preview-view th:last-child,
.markdown-preview-view td:last-child {
  /* border-right:none; */
}
.markdown-preview-view th:first-child,
.markdown-preview-view td:first-child {
  /* border-left:none; */
  padding-left:2;
}
.markdown-preview-view tr:last-child td {
  /* border-bottom:none; */
}