表格中缩进换行文本
我正在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这会缩进整个单元格文本,然后将第一行拉回原来的左侧。
This indents the entire cell text and then pulls the first line back to the original left side.
您需要它有多智能?您可以做一些简单的事情(在我的示例中是肮脏的):
然后缩进或向段落内的文本添加填充。当然,这只适用于第一次出现。
How smart do you need it to be? You could do something simple (and dirty in my example):
Then indent or add padding to the text inside the paragraph. Of course this will only work for the first occurrence.