简介

在RemNote中添加分隔线

效果

20220129192625.png

使用方法

安装CSS代码块

  1. [data-rem-tags~="divider"]:not(:focus-within) {
  2. color: transparent;
  3. position: relative;
  4. }
  5. [data-rem-tags~="divider"]:not(:focus-within)
  6. .rem-bullet__container {
  7. display: none;
  8. }
  9. [data-rem-tags~="divider"]:not(:focus-within)
  10. .hierarchy-editor__tag-bar {
  11. display: none;
  12. }
  13. [data-rem-tags~="divider"]:not(:focus-within):before {
  14. content: " ";
  15. display: block;
  16. position: absolute;
  17. width: 100%;
  18. top: 50%;
  19. border-bottom: var(--divider-style, 1px solid black);
  20. }
  21. :root {
  22. --divider-style: 1px solid #c2e9fb;
  23. }

添加分隔线

在需要添加分隔线的地方添加 Didiver 标签即可