Filling the Remaining Width of a Container with CSS
In a scenario where you have a header with three elements arranged in a row, the goal is to have the middle element occupy the remaining space within the header. To achieve this, the combination of inline-block display and the calc() function in CSS proves effective.
The Code Solution
The provided HTML structure consists of a header containing an image, a middle element with text, and a right element. To manipulate their layout, we apply CSS as follows:
header {
background: red;
}
#middle {
background: orange;
display: inline-block;
}
#right {
background: green;
display: inline-block;
width: calc(100% - 100px);
}
Explanation
The result of this code is that the middle element stretches to fill the remaining space in the header, accommodating its content while the right element maintains its width of 100px.
Alternative Solution
If you prefer to have a space between the divs, you can modify the CSS by setting the font-size of the outer element (header) to 0:
header {
font-size: 0;
...
}
Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.
Copyright© 2022 湘ICP备2022001581号-3