Rather than having numbered footnotes, our publication has footnotes marked by asterisks.
So when someone wants to call a footnote, the code goes something like this:
Let's say the next sentence refers to the same footnote. How do you "phrase" the markup/styling to accommodate these kind of footnotes?
.fn {
display: prince-footnote;
font-size: 7pt;
footnote-style-position: inside;
}
.fn::footnote-call {
content: "*";
}
.fn::footnote-marker {
content: "*";
footnote-style-position: inside;
}
So when someone wants to call a footnote, the code goes something like this:
This is a line of text with an interesting footnote.<span class="fn">This is the interesting footnote.</span>
Let's say the next sentence refers to the same footnote. How do you "phrase" the markup/styling to accommodate these kind of footnotes?