对多行文本应用文本缩进。 jQuery

发布于 2025-01-05 19:04:48 字数 409 浏览 0 评论 0原文

多行文本的文本缩进似乎不起作用。如下图所示,text-indent 似乎不适用于 years:******(红色圆圈)**这个词。

请指教。

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

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

在此处输入图像描述

提前致谢。

BB

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我不咬妳我踢妳 2025-01-12 19:04:48

使用 'padding-left':'30px' 代替 'text-indent': '30px' 修复的问题。

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文