I have footnotes defined in my document and the text the footnotes is associated with is formatted quite broadly (from headers to normal text to small text). The problem is that the text of the footnote is reflecting the formatting of the text with which it is associated (for example, if the footnoted paragraph was horizontally centered and 12pt, the footnote text will come out centered in the output area and will be 12pt).
My basic question is, how do I control (homogenize) the formatting of the text of the footnotes in the same way I can control the formatting of the text of the footnote marker:
.footnote::footnote-marker
{
footnote-style-position: outside;
content: counter(footnote) " -" ' ';
FONT-SIZE: 8pt;
FONT-FAMILY: Arial, Helvetica;
}
I was hoping for something like this:
.footnote::footnote-text
{
FONT-SIZE: 8pt;
FONT-FAMILY: Arial, Helvetica;
TEXT-ALIGN: left;
}
It seems like a fairly obvious thing to be able to do.
Thanks for any advice.
My basic question is, how do I control (homogenize) the formatting of the text of the footnotes in the same way I can control the formatting of the text of the footnote marker:
.footnote::footnote-marker
{
footnote-style-position: outside;
content: counter(footnote) " -" ' ';
FONT-SIZE: 8pt;
FONT-FAMILY: Arial, Helvetica;
}
I was hoping for something like this:
.footnote::footnote-text
{
FONT-SIZE: 8pt;
FONT-FAMILY: Arial, Helvetica;
TEXT-ALIGN: left;
}
It seems like a fairly obvious thing to be able to do.
Thanks for any advice.