表格中缩进换行文本

发布于 2024-11-27 22:47:11 字数 292 浏览 2 评论 0原文

我正在 html 文档中创建一个表。如果单元格中的文本太长,我希望它换行到新行(没问题)。我正在努力实现的目标是使新行上的文本缩进。

例如,而不是

A very long bit |
of text in this |
table           |

我想要:

A very long bit |
   of text in   |
   this table   |

是否可以通过 CSS 或其他方式实现这一点?

I am creating a table in a html document. If the text is too long in a cell, I want it to wrap on to a new line (no problem). What I am struggling to achieve is making the text on the new line(s) to be indented.

E.g. instead of

A very long bit |
of text in this |
table           |

I want:

A very long bit |
   of text in   |
   this table   |

Is it possible to achieve this in CSS or other means?

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

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

发布评论

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

评论(2

淑女气质 2024-12-04 22:47:11
td {
   text-indent: -4.0em;
   padding-left: 4.0em;
}

这会缩进整个单元格文本,然后将第一行拉回原来的左侧。

td {
   text-indent: -4.0em;
   padding-left: 4.0em;
}

This indents the entire cell text and then pulls the first line back to the original left side.

月下伊人醉 2024-12-04 22:47:11

您需要它有多智能?您可以做一些简单的事情(在我的示例中是肮脏的):

s = "a long string";
regExp = /(.{5})(.*)/;
cut = s.replace(regExp, "$1<p>$2</p>");

然后缩进或向段落内的文本添加填充。当然,这只适用于第一次出现。

How smart do you need it to be? You could do something simple (and dirty in my example):

s = "a long string";
regExp = /(.{5})(.*)/;
cut = s.replace(regExp, "$1<p>$2</p>");

Then indent or add padding to the text inside the paragraph. Of course this will only work for the first occurrence.

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