django-formset
django-formset copied to clipboard
RichTextarea overflows
Content flows out of the bottom of the textarea.
Hmmm,
did you somehow modify the CSS?
Which CSS framework are you using, it looks like Bootstrap.
The element <div contenteditable="true" class="ProseMirror">…</div>
should have overflow-y: auto;
. Do you see that in your developer tools?
No I haven't modified the CSS.
Only the Foundation framework has overflow for the ProseMirror
set to auto: https://django-formset.fly.dev/foundation/advertisementform
The rest have overflow set to visible
.
Please check this demo: https://django-formset.fly.dev/foundation/advertisement
there is an issue with positioning, top
should be ~40px
but it currently is 109px
. Don't know why.
This is what that looks like for me:
I see you fixed the issue with the overflow, but I'm not quite sure what you want me to look at in regards to the positioning. Do you even need absolute positioning here?