如何对有视力的用户和搜索引擎隐藏任何文本,但不对屏幕阅读器隐藏?

发布于 2024-08-30 07:03:49 字数 118 浏览 7 评论 0原文

对有视力的用户隐藏任何文本但不对流行的屏幕阅读器隐藏任何文本的最佳测试方法是什么? 并且不影响SEO。

例如,如果我仅为屏幕阅读器用户添加任何隐藏文本,那么当搜索引擎抓取该页面时,搜索引擎不应抓取该文本。

What is the best tested way to hide any text from sighted user but not from popular screen readers?
and without affecting SEO.

for example if i adding any hidden text only for screen-reader users then that text should not be crawl by search engine when search engine will crawl that page.

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

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

发布评论

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

评论(6

遮云壑 2024-09-06 07:03:49

jQuery UI CSS 框架通过将元素定位在远离屏幕的位置来实现此目的,例如

.ui-helper-hidden-accessible { position: absolute; left: -99999999px; }

The jQuery UI CSS framework does this by positioning elements far off-screen, e.g.

.ui-helper-hidden-accessible { position: absolute; left: -99999999px; }
思慕 2024-09-06 07:03:49

我正在使用系统 Drupal 7 类,它似乎工作得很好(并且似乎是迄今为止视觉上隐藏内容的最佳方式,但使其可供屏幕阅读器使用):

.element-invisible {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
}

还有另一个类用于使元素可聚焦,但请阅读更多

I'm using the system Drupal 7 class which seem to be working pretty good (and seems to be the best way so far to visually hide content, but make it available to screen readers):

.element-invisible {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
}

There's another class for making elements focusable, but read more in this article.

骷髅 2024-09-06 07:03:49

我喜欢 @rkallensee 的答案,并且 HTML5BP 样式表上建议了类似的内容。但就我而言,在 I-Pad 4 上查看时,高度就是浏览器滚动条的高度。它的表现就好像内容仍然存在一样。对于少量内容来说这还可以,但如果隐藏大量内容,那么看起来网站下方似乎有更多内容。

我可以只添加 1px 的高度。但我使用 JS 测量 div 内的高度,这搞砸了。我发现使用 max-height:1px 可以解决这两个问题。我正在使用的代码是:

clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
clip: rect(1px, 1px, 1px, 1px);
overflow: hidden;
position: absolute;
max-height:1px;

I liked @rkallensee answer and something similar is suggested on the HTML5BP style sheet. In my case though, looking on an I-Pad 4, the height was giving the browser scroll bars. It was acting as though the content was still there. That would be OK for a small amount of content but if hiding lots then it made it look as though there was more content below the website.

I could just add a height of 1px. But I'm measuring heights inside my div using JS which messes up. I've found that using a max-height:1px solves both issues. The code I'm using is:

clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
clip: rect(1px, 1px, 1px, 1px);
overflow: hidden;
position: absolute;
max-height:1px;
合久必婚 2024-09-06 07:03:49

回答你的部分问题。
W3C 有关隐藏部分链接文本技术的文章 - C7:使用 CSS 隐藏部分链接文本

文章摘录:
该技术的工作原理是创建一个 CSS 选择器来定位要隐藏的文本。选择器的规则集将要隐藏的文本放置在隐藏溢出的 1 像素框中,并将文本放置在视口之外。 这可确保文本不会显示在屏幕上,但仍可供辅助技术(例如屏幕阅读器和盲文显示器)访问。请注意,该技术不使用visibility:hidden或display:none属性,因为这些属性可以具有除了阻止屏幕显示之外,还对辅助技术隐藏文本产生了无意的影响。

Answer for a part of your question.
W3C Article regarding the technique to hide a portion of the link text - C7: Using CSS to hide a portion of the link text.

Excerpt from the article:
This technique works by creating a CSS selector to target text that is to be hidden. The rule set for the selector places the text to be hidden in a 1-pixel box with overflow hidden, and positions the text outside of the viewport. This ensures the text does not display on screen but remains accessible to assistive technologies such as screen readers and braille displays. Note that the technique does not use visibility:hidden or display:none properties, since these can have the unintentional effect of hiding the text from assistive technology in addition to preventing on-screen display.

泛泛之交 2024-09-06 07:03:49

在 HTML 中:

<span class="hideMe">some text</span>

在 CSS 中:

hideMe{display:none;}

In your HTML:

<span class="hideMe">some text</span>

In your CSS:

hideMe{display:none;}
时光是把杀猪刀 2024-09-06 07:03:49

好吧,您已经有了 display:nonevisibility:hidden,并将文本放置在远离屏幕的地方。

并非所有屏幕阅读器都遵循标准,并且没有处理非标准行为的标准方法。

您无法使用 HTML 和 CSS 对屏幕阅读器隐藏内容,但又使其对真人可见。如果它在页面中,那么它就在每个人的页面中。最好的情况是,您可以使用 robots.txt 来防止引擎抓取页面。

Well, you've got display:none, visibility:hidden, and placing the text far off-screen.

Not all screen readers follow the standards, and there's no standard way of dealing with non-standard behavior.

You can't use HTML and CSS to hide content from screen readers, yet have it visible to real people. If it's in the page, it's in the page for everyone. At best, you could use robots.txt to prevent the engine from scraping the page.

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