Home > Web Front-end > CSS Tutorial > How to Make Floated Child Div Heights Match Their Parent's Height?

How to Make Floated Child Div Heights Match Their Parent's Height?

DDD
Release: 2024-12-14 02:53:13
Original
953 people have browsed it

How to Make Floated Child Div Heights Match Their Parent's Height?

Balancing Floated Child Div Heights to Match Parent Height

Problem Statement:

In a page with the following HTML structure:

<div class="parent">
    <div class="child-left floatLeft">
    </div>

    <div class="child-right floatLeft">
    </div>
</div>
Copy after login

As the content of the child-left div expands, the parent div's height rightfully increases. However, the height of the child-right div remains unchanged, which poses the question: how to equalize the height of child-right to that of its parent?

Solution:

To make the child-right div's height match its parent's height, apply the following CSS properties to the parent element:

.parent {
    overflow: hidden;
    position: relative;
    width: 100%;
}
Copy after login

These properties ensure that the parent element has a defined height and contains the floated children. Next, add the following CSS properties to the .child-right class:

.child-right {
    background: green;
    height: 100%;
    width: 50%;
    position: absolute;
    right: 0;
    top: 0;
}
Copy after login

These properties give the child-right div an absolute position, setting its height to 100% and placing it against the right edge of the parent.

For more detailed examples and information on creating equal height columns, refer to the provided links in the reference section below.

References:

  • [CSS Examples for Equal Height Columns](link to external resource)
  • [Information on Equal Height Columns](link to external resource)

The above is the detailed content of How to Make Floated Child Div Heights Match Their Parent's Height?. 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