Question

Text-indent for a multiline text doesn't seem to be working. As shown in the below picture text-indent dosen't seem to apply for the word years:******(Circled in red)**.

Please advice.

 var indent =
        {
            'margin': '0px',
            'padding': '0px',
            'text-indent': '30px'
        };

$('.HideShow td:nth-child(2)').css(indent);

enter image description here

Thanks in advance.

BB

Was it helpful?

Solution

Using 'padding-left':'30px' instead of 'text-indent': '30px' fixes the issue.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top