Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Why does this small floated div shift my paragraph? Re: Why does this small floated div shift my paragraph?

#50093
chrisL
Member

By default, the paragraph tag add some margin to the block. Zero out the margin for the p tag and then work from there to get the effect you want.

Code:
p { margin: 0; }