Thanks, that was useful to some extent.
I adopted the custom CSS as seen below and came up with the idea to use a table to display the text right next to the picture.
In principle this works, but the more text I type in cell 1, the more the table and the picture in cell 2 scale undesirably.
My question now: Is there a way to fix the column size of the table? Or some other workaround?
As requested here as well: Ability to resize columns in tables
First Header | Second Header
------------ | ------------
Content from cell 1 | Content from cell 2
Content in the first column | Content in the second column
.
.markdown-preview-view img {
display: block;
margin-top: 20pt;
margin-bottom: 20pt;
margin-left: auto;
margin-right: auto;
width: 40%; /* experiment with values */
transition:transform 0.25s ease;
}
.markdown-preview-view img:hover {
-webkit-transform:scale(1.8); /* experiment with values */
transform:scale(2.35);
}