Home > Web Front-end > CSS Tutorial > Why Are Absolutely Positioned Flex Items Not Removed From the Normal Flow in IE11?

Why Are Absolutely Positioned Flex Items Not Removed From the Normal Flow in IE11?

DDD
Release: 2024-12-24 13:09:10
Original
106 people have browsed it

Why Are Absolutely Positioned Flex Items Not Removed From the Normal Flow in IE11?

Absolutely positioned flex items cannot be removed from normal flow in IE11

Problem:

In two divs with content and a third div with absolute position in the background In this case, the container is a flexbox. This works fine in both Chrome and Safari, but Firefox and IE11 take the absolutely positioned div into account and distribute the space between the divs as if there were three divs in three rows.

Analysis:

Firefox treats the absolutely positioned third div as an in-flow flex item and takes it into account in the space-between calculation. (Same goes for IE11; Chrome and Edge ignore it.)

Obviously, this is inconsistent with the current flexbox spec:

4.1. 绝对定位的弹性项

由于它不在流中,一个 flex 容器的绝对定位从属项不会参与 flex 布局。
Copy after login

Workaround:

  • Move absolute positioning div
<div class="container">
    <div class="c1">Content 1</div>
    <div class="bg">Background</div>
    <div class="c2">Content 2</div>
</div>
Copy after login
  • Use CSS Grid layout

CSS Grid layout does not consider absolutely positioned elements, so it This problem can be solved.

Note:

For Firefox, this issue has been resolved in v52. However, IE11 still has this problem.

The above is the detailed content of Why Are Absolutely Positioned Flex Items Not Removed From the Normal Flow in IE11?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template