Hi,
I want to break some text in stylesheet CSS so that when I export PDF, the footer should display 2 sentences on separate lines.
Here is my code :
@page {
@bottom-center {
content: " This is line 1 \A This is line 2, Copyright©2018 ";
font-size:8pt;
font-family: ConfluenceInstalledFont, Helvetica, Arial, sans-serif;
}}
at the place of \A I tried other options like \n, Shift+Enter etc,but none of them working.
Can someone please help me to achieve this outcome ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
this worked for me:
@page {
@bottom-center {
content: "This is line 1 \AThis is line 2, Copyright©2018 ";
white-space: pre;
font-size:8pt;
font-family: ConfluenceInstalledFont, Helvetica, Arial, sans-serif;
}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.