Forum How do I...?

Multi-Line Footer

dan.konsoer
Hello,

Trying to create a line break on my footer, but it doesn't seem to be breaking.

The text comes across as expected, but only appears on one line.

@page {
@bottom-left{
color:#be0711;
font-weight:bold;
font-size:11px;
content: "Page " counter(page) " of " counter(pages);
}
@bottom-right {
color:#cca11f;
font-weight:bold;
font-size:11px;
content: "Test 1 of 1";
flow: static(header, start);
}

@bottom {
color:#be0711;
font-weight:bold;
font-size:11px;

content: "Thank you for choosing Our Company\A This should be on a new line :D ";
}
}

Thanks!
dan.konsoer
Nevermind, I'm sorry - I found it on an older thread.

@page {
@bottom {
content: "First line\A Second line";
white-space: pre-line
}
}