在 HTML 代码中使用大量换行符有什么好处吗?

发布于 2024-12-11 19:33:18 字数 408 浏览 0 评论 0原文

查看此 Google 帮助文档页面的来源,我发现存在巨大差距在 doc 声明和 html 之间。

除了数字之外,我不知道为什么要这样做:顶部 doctype 和 html 之间有 67 个换行符。 (是的,现在已经是深夜了 - 这就是为什么我在缝隙中寻找等等......)

这是第一部分的复制和粘贴:

<!DOCTYPE html>

































































<html>
<head>
<meta http ...

Peeking at the sources of this Google helpdoc page, I notice there is a huge gap between the doc declaration and the html.

Other than numerology, I have no idea why this is done: There are 67 line breaks between the top doctype and the html. (And yes, it is late at night - which is why I'm looking in the crevices and such..)

Here's the copy and paste of the first bit:

<!DOCTYPE html>

































































<html>
<head>
<meta http ...

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

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

发布评论

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

评论(4

陌路终见情 2024-12-18 19:33:18

HTML 中的空格会被忽略,因此它对 SEO 或页面呈现没有影响(实际上它在浏览器中呈现为单个空格)。通常,空格用于帮助格式化 HTML,以便更容易阅读和管理,但它也可以以愚蠢的方式使用,例如“隐藏”注释中链接的源代码。也可能是因为动态脚本输出空行,其中由于变量设置而没有呈现动态内容(基本上某人的代码有点草率)。我不能说这些原因适用于此页面,但我确信其中有一个非恶意的原因。

Whitespace in HTML is ignored so it has no effect on SEO or page rendering (actually it is rendered as a single space in the browser). Normally whitespace is used to help format HTML so it is easier to read and manage but it can also be used in silly ways such as "hiding" the source code as linked to in the comments. It can also be because a dynamic script output blank lines where no dynamic content is rendered due to variable settings (basically someone's code is a little sloppy). I can't say these reasons apply to this page but I'm sure there's a non-nefarious reason for it.

指尖微凉心微凉 2024-12-18 19:33:18

没有什么。相反,这不是一个好的做法,因为它会向用户发送不必要的字节。对于那些像智能手机这样的连接速度较慢的人来说,它会减慢加载速度。

Nothing. On the contrary, it isn't a good practice because it sends unnecessary bytes to the user. It will slow down the loading for those who have a slow connection like smartphone.

雾里花 2024-12-18 19:33:18

简短的回答是否定的。当人们尝试查看网站的源代码时,这只会让事情变得更加烦人。

The short answer would be no. It just makes it more annoying when people try and view the source code of a website.

英雄似剑 2024-12-18 19:33:18

保留必要的线路并不意味着任何事情只是浪费时间,仅此而已。

但是您应该留出空间并使用缩进,这将对您有利。
因为几个月后当你看到你的文档时,你就会知道你写了什么,否则你甚至看不到你的标签已更正。

Leaving lines necessary doesn't mean any thing just waste of time, thats all.

But You should leave space and use indenting it will be benefiet for you.
Because when you see your document after few months you will come to know what you had written, or else you can't even see you tag corrected.

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