在 html 中对选项卡进行编码

发布于 2024-09-27 13:03:25 字数 171 浏览 5 评论 0原文

我可以在 HTML 文档中使用   对空格进行编码。制表符是否有等效的字符?

我尝试预加载包含制表符的文本的

I can encode a space using   in an HTML document. Is there an equivalent for the tab character?

I'm trying to preload a <textarea> with text that contains tabs, but my CMS removes any tab characters that exist in the HTML code.

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

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

发布评论

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

评论(4

浪菊怪哟 2024-10-04 13:03:26

检查您的编辑后,答案非常简单: :)

After reviewing your edit, the answer is very simply: :)

始终不够爱げ你 2024-10-04 13:03:26

在纯 HTML 中对 TAB 字符进行编码的唯一方法是用

标签包围它,这会将您的字体变成像 Courier New 一样的等宽字体。 HTML 中没有特定的 之类的标签。别问我为什么。

将“

考虑到上述答案,仅放置 是行不通的,因为 HTML 会将其替换为空格,除非它位于 PRE 标记之间。

The only way to encode a TAB character in pure HTML is to surround it with <pre></pre> tags, which turns your font into a mono-space font like Courier New. There is no specific <tab></tab> like tags in HTML. Don't ask me why.

Place "<textarea> etc" in between the tags.

With all due respect to the above answers, just placing will not work as HTML will replace it with a space unless it's in-between the PRE tags.

等风来 2024-10-04 13:03:26

简单易行的答案就是包含在 CSS 中。

white-space: pre;

The simple and easy answer is including in CSS.

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