在相对位置中使用绝对位置是否会在打印、屏幕阅读器和移动用户中产生问题?

发布于 2024-08-27 02:26:49 字数 230 浏览 9 评论 0原文

relative 中使用 position:absolute 是否会在打印、屏幕阅读器和移动用户中产生问题?

如果我们需要在屏幕、打印以及屏幕阅读器和移动用户方面具有良好的兼容性,或者 float + margin + Padding 仍然是最好的,应该少一些使用位置

Is use of position:absolute inside relative can create problems in Print ,screen-readers and for mobile users?

or float + margin + Padding is still best if we need good compatibility at Screen, Printing and for screen reader and mobile users, Should i less use Position?

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

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

发布评论

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

评论(1

浅笑轻吟梦一曲 2024-09-03 02:26:49

屏幕阅读器完全忽略通过 CSS 进行的元素定位。相反,他们在决定首先读取什么时使用元素在 DOM 中出现的顺序。

考虑以下示例:

<p style="position:absolute;top:100;left:0">Foo</p>
<p style="position:absolute;top:0;left:0">Bar</p>

从视觉上看,“Bar”段落首先出现,因为我们使用 CSS 将其放置在另一个段落之上。但屏幕阅读器将忽略 CSS,只读取“Foo”段落,然后读取“Bar”段落。

所以回答你的问题,是的,这对于屏幕阅读器用户来说可能没问题。但是,请注意元素的顺序,并确保按该顺序阅读时页面仍然有意义。

对于位置:固定,这取决于您的目标浏览器。例如,IE6 不支持“固定”定位。由于视口的大小有限,大多数手机也没有(iPhone 上的移动版 Safari 肯定没有)。

Screen readers completely ignore the positioning of elements via CSS. They instead use the order the elements appear in the DOM when deciding what to read first.

Consider the following example:

<p style="position:absolute;top:100;left:0">Foo</p>
<p style="position:absolute;top:0;left:0">Bar</p>

Visually, the "Bar" paragraph appears first, because we've positioned it above the other using CSS. But the screen reader will ignore the CSS and just read the "Foo" paragraph followed by the "Bar" paragraph.

So to answer your question, yes it's probably fine for screen reader users. However, be aware of the ordering of your elements and make sure that the page still makes sense when read in that order.

For position:fixed, it will depend on your target browsers. IE6 for example, doesn't support "fixed" positioning. Most mobile phones don't either (definitely mobile Safari doesn't on the iPhone) due to the fact that the viewport is of limited size.

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