This snippet removes the default bottom margin from the last paragraph inside Elementor’s Text Editor widget. It prevents an extra gap below the widget while keeping normal spacing between paragraphs.
Add this code with a snippets plugin in <head>, or place it in Page CSS block or Site Settings.
.elementor-widget-text-editor p:last-child {
margin-bottom: 0;
}
Some solutions only work on the live site. Always publish and test after each change, as results may not appear in the editor.