找到一段可自由拖动表格大小的CSS代码,可是重新打开文件后表格重置默认高宽了
请问各位佬,怎么配置储存拖动过后的高宽呢?
CSS代码
/* ======== 表格可拖动大小 (不能保持大小)========*/
:is(.markdown-preview-section,.markdown-rendered) table:not(.dataview.table-view-table):active,
:is(.markdown-preview-section,.markdown-rendered) table:not(.dataview.table-view-table):hover {
overflow: hidden;
resize: both !important;
}