Not with <span>
First, I assume that your text is between the span tags. Second, I don't think "text-indent" works on the span level. Try using at the paragraph level or above. For example:
<p style="text-indent: 25px">Your paragraph text here</p>.
That should work.
Best of Luck
|