Home › Forums › CSS › background image not in div.. › Re: background image not in div..
January 17, 2013 at 11:25 am
#121269
Participant
I would like to add to this, that display:table isn’t the best solution because it’s not supported everywhere.The classic crossbrowser solution would be:
#footer:after {content:'';clear:both;display:block}
#footer {display:inline-block}
#footer {display:block}