'dis a weird one. Don’t try to figure it out by just reading this post (you’ll fail), instead copy-paste this into a tiddler:
Directly edit this, e.g change "black" into "red":
<style contenteditable>
p {
color: black;
}
</style>
No JavaScript, the `<style>` tag is set to `display: block` and using `contenteditable`
<style>
style[contenteditable] {
display: block;
background-color: #eee;
padding: 20px;
font-family: monospace;
}
</style>
https://css-tricks.com/did-you-know-that-style-and-script-tags-can-be-set-to-display-block/
Maybe it is useful for testing styles? Changing the value (as instructed in the text) does not change the actual tiddler content, so the modifications are not stored.