对多行文本应用text-indent。 JQuery的

时间:2012-02-14 20:11:20

标签: jquery text-indent

多行文字的文字缩进似乎不起作用。如下图所示 - 缩进似乎不适用于 years: ******(红色圆圈)**。

请建议。

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

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

enter image description here

提前致谢。

BB

1 个答案:

答案 0 :(得分:2)

使用 'padding-left':'30px' 代替 'text-indent': '30px' 解决了这个问题。