Forums

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

Home Forums CSS floating issues Reply To: floating issues

#195467
Paulie_D
Member

For some reason it is appearing in the middle of the page. I need it at the bottom of the page.

It’s because it’s not floated at all.

It’s positioned absolutely.

Also, you haven’t contained the floats on your .subArticle wrapper div.

.subArticle {
  border: 0px solid #000;
  width: 100%;
  height: auto;
  text-align: right;
  line-height: 60px;
  overflow: hidden; /* quick clearfix */
}

That’s one way of clearing floats but there are others.