I tried make lines in span closer with line-height, but when i give line-height less than 13px
it does not take effect
Here is the code:
<span style="font-size: 10px; line-height: 9px;">
Disclaimer: This e-mail message and any attachments to it are intended solely for the use of intended recipient(s) and may contain confidential or
legally privileged information. If you are not the intended recipient you are hereby notified that any disclosure, copying, distribution,
or taking any action in reliance on the contents of this e-mail or its attachments are strictly prohibited and may be against the law.
If you have received this communication in error, please notify us immediately by responding to this email and delete the message from your system. Simply Technologies
is neither liable for the proper and complete transmission of the information contained in this communication nor for any delay in its receipt
</span>
How can I make the lines closer?
Change your span to p (a block-level element) and the line-height will be respected. Note that a line-height smaller than your font-size may cause truncation of the characters.