For following HTML code:
Code:
<dl>
<dt>term</dt>
<dd>definition</dd>
<dl>
dd element appears in most of the browsers with indent.
After rendering to PDF the same element is without indent.
The question is: how to achieve in PDF similar view to HTML for that element.
I've tried add in CSS something like below:
Code:
DD {margin-left:40px;}
but without success.
Is the way to add indent in PDF output for DD element ?