Here’s how you can add add a line break after an element using pure CSS.
.element:after {
content: '\A';
white-space: pre;
}

Here’s how you can add add a line break after an element using pure CSS.
.element:after {
content: '\A';
white-space: pre;
}