跳过

的使用并选择
反而

发布于 2024-12-20 22:07:07 字数 155 浏览 0 评论 0原文

我正在构建一个 CMS,我想知道是否可以跳过段落的使用,只在文本内容中使用换行符。

  1. 这是好主意还是坏主意?
  2. Google 是否会在不使用任何段落的情况下以任何方式区别对待内容?
  3. 允许“双换行符”甚至更多换行符怎么样?

I am building a CMS and I wonder if I can skip the usage of paragraphs and only go with linebreaks in the text content.

  1. Is it a good or bad idea?
  2. Will Google treat the content different in any way not using any paragraphs?
  3. What about allowing "double linebreaks" or even more linebreaks?

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

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

发布评论

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

评论(3

缘字诀 2024-12-27 22:07:07

这是一个坏主意,原因有几个:

  1. 浏览器将不再能够在框中正确地流动文本,这可能会导致在您不期望的地方出现大量换行符。如果用户更改浏览器中的字体大小,情况可能会变得更糟。
  2. 使用一个或多个分隔符来获得页面中正确的垂直间距并不是在网站中获得一致样式的有效方法。使用一些 CSS 来获得段落和其他元素之间的正确间距要简单得多。

It is a bad idea, for several reasons:

  1. browsers will no longer be able to properly flow text in boxes, which is likely to result in a lot of linebreaks in places you are not expecting. This is likely to get worse if users change the fontsize in their browser.
  2. Using one or more breaks to get the right amount of vertical spacing in a page is not a useful way to get consistent styling in your site. It is much simpler to use a bit of CSS to get the right spacing between paragraphs and other elements.
凉世弥音 2024-12-27 22:07:07

我建议阅读下面的文章。它涵盖



标签:

http://www.pitstopmedia.com/sem/br-hr-p-pre-tag-seo

I suggest reading the article below. It covers <p>, <hr>, <br>, and <pre> tags:

http://www.pitstopmedia.com/sem/br-hr-p-pre-tag-seo

空城仅有旧梦在 2024-12-27 22:07:07

你能两者都实现吗?即当用户按下回车键时,他们会得到一个段落。当他们按下 Shift 并输入时,他们会得到换行符。我的工作使用只使用 br 的 cms,我发现最好允许使用两者,因为 p 标签允许您向段落添加样式等。

至于谷歌,我不是 100% 确定他们的算法,但他们可能会使用

标签来解释您的页面 - 我知道他们在很多事情上使用标签,但这可能值得研究。

您可以使用 br 来精细控制要添加的行数。两个 br 大约等于一组 p 后面的间距,但是使用 p 你可以用 CSS 控制间距。

Can you implement both? Ie when the user press enter, they get a paragraph. When they press shift and enter they they get a line break. My work uses a cms that only uses br, I find it better to allow the use of both as p tags allow you to add styles to the paragraph etc.

As for google, I'm not 100% sure of their algorithms, but they may use

tags to paraphrase your page - I know they use tags for many things, but it may be worth looking into.

You can use the br for fine control of the number of lines you want to add. Two br is about equal to the spacing after one set of p, but then with the p you can control the spacing with CSS.

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