I have an extremely long pdf header instruction which puts a colored frame around the header:
<div style=" background-color: #ffc;
border: black solid 2pt;
border-radius: 10px;
display: block;
width:max; font-size: 0.75em;
font-weight: bold;
margin: 0 2em 0 0;
line-height: 1;
padding: 1%;
text-indent: 0; <p style="float:left">_TITLE_<p style="float:right;">by _AUTHOR_ <p></p><p></p></div>
I copied most of it from my CSS:
f {
background-color: #ffc;
border: black solid 2pt;
border-radius: 10px;
display: block;
float: left;
font-size: 0.75em;
font-weight: bold;
margin: 0 2em 0 0;
line-height: 1;
padding: 1%;
text-indent: 0;
}
Would it be possible to wrap the text within the header with <f></f> with some sort of reference to the CSS?
Best regards, Pop
<div style=" background-color: #ffc;
border: black solid 2pt;
border-radius: 10px;
display: block;
width:max; font-size: 0.75em;
font-weight: bold;
margin: 0 2em 0 0;
line-height: 1;
padding: 1%;
text-indent: 0; <p style="float:left">_TITLE_<p style="float:right;">by _AUTHOR_ <p></p><p></p></div>
I copied most of it from my CSS:
f {
background-color: #ffc;
border: black solid 2pt;
border-radius: 10px;
display: block;
float: left;
font-size: 0.75em;
font-weight: bold;
margin: 0 2em 0 0;
line-height: 1;
padding: 1%;
text-indent: 0;
}
Would it be possible to wrap the text within the header with <f></f> with some sort of reference to the CSS?
Best regards, Pop