/    Sign up×
Community /Pin to ProfileBookmark

Wrapper NOT Expanding with Content

I have the following page layout:

[code=html]<div id=”wrapper”>

<div id=”body”></div>

</div>[/code]

I have the following styles applied:

#wrapper {
width: 850px;
margin-right: auto;
margin-left: auto;
background-color: #FFFFFF;
position: relative;
}

#wrapper #body {
width: 575px;
margin-top: 5px;
margin-left: 10px;
background-color: #dbdbdb;
float: left;
}

I need the wrapper with white background to grow with the body but it isn’t even showing up while the body content does.

Any ideas why?

to post a comment
CSS

2 Comments(s)

Copy linkTweet thisAlerts:
@JSOMar 30.2010 — [CODE]
#wrapper:after {
clear: both;
}
[/CODE]


That should work ? At least, it did for me.
Copy linkTweet thisAlerts:
@katierosyApr 02.2010 — Clear the floated element. add a clear div after body

tag

Code:

.clear{ clear:both;}

<div id="wrapper">

<div id="body"></div>

<div class="clear"></div>

</div>
×

Success!

Help @Ntrimgs spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.4,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,

tipper: @Samric24,
tipped: article
amount: 1000 SATS,
)...