need CSS testing/feedback
need CSS testing/feedback
- Started
- Last post
- 5 Responses
- snizl
I'm currently working on http://www.embracetheendofthewor… and am having discrepencies between FF and IE. Particularly the footer, it shows up fine in IE but in FF there is a big gap between the footer and the text block above it. I'm still relatively new to CSS. Any help/feedback appreciated.
- bagelz0
The end has a margin-bottom and therefore seems to push the footer down, set the margin to 0 and it works on mine.
- snizl0
Which part do you mean by 'end'?
- foreign0
add and replace this:
padding-bottom: 10px;
margin:0px;to the #newsarticle div.
the p tag by default has a margin.
- foreign0
sorry:
padding-bottom: 10px;
margin-bottom: 0;
- snizl0
Thanks. that did the trick. Its the little things that throw you off.