Contenteditable <pre> is no longer editable
Closed this issue · 1 comments
baoshan commented
It seems a <pre contenteditable>
is no longer editable with all properties reverted:
/* preformatted text - use only for this feature */
pre {
all: revert;
}
Is this the expected behavior?
elad2412 commented
Thanks for the update,
Added a new patch to fix this issue - update to version 1.8.4
/* preformatted text - use only for this feature */
:where(pre) {
all: revert;
}