Home >Web Front-end >CSS Tutorial >How Can I Make a Div Occupy the Remaining Width of Its Parent Container?
Your task is to make a div, named "div2," occupy the remaining space within a parent container div, "Main." Here's the HTML snippet provided for this scenario:
<div>
To achieve your goal, employ the following CSS code:
#divMain { width: 500px; } #div1 { width: 100px; float: left; background-color: #fcc; } #div2 { margin-left: 100px; margin-right: 100px; background-color: #cfc; } #div3 { width: 100px; float: right; background-color: #ccf; }
Explanation:
The above is the detailed content of How Can I Make a Div Occupy the Remaining Width of Its Parent Container?. For more information, please follow other related articles on the PHP Chinese website!