I've encountered an issue with how the <p>
text-indent property appears when a page is printed using Internet Explorer's Active-X plugin. Here is the relevant CSS:
p {
font-family: Calibri;
font-size: 20pt;
line-height: 1.75em;
margin-bottom: 1.00em;
margin-top: 1.00em;
margin-left:1.0em;
margin-right:1.0em;
text-indent:1.5em;
}
Upon printing the HTML page with the above code, the issue arises as displayed below:
The problem persists where the top of each new page showcases the text indentation. Is there an alternative approach to indenting the first line of every <p>
element without relying on the "text-indent" property? The solution needs to be compatible across various browsers.