SO I have a tale created in pages and wanted to put it into obsidian. It is a table with codes and explanations for programming. I have 3 rows in total. However, the rows itsel are quiet broad. Which makes it difficult to see the whole table. How can I adjust it?
Screenshot?
You can insert <br>
for line breaks inside rows, if this answers your question.
Tables are really hard to control in general in Obsidian. You can spend a lot time modifying tables without getting what you want.
Some CSS to use:
.markdown-source-view.mod-cm6 .cm-embed-block {
--table-column-max-width: 75ch;
overflow-wrap: break-word;
}
See also CSS Editor community plugin.