Border problem

http://mayacove.com/dev/test.html

can’t figure out whey there are there 3 extra pixels here inside the wrapper div, at the bottom, betw edge of img and the border… (markup & CSS validate…)

am stumped here… thank you…

Try this:

 img {display:block;}

As Luki said it’s the extra nodes left after inline elements. Either give it display:block; or one of hte other solutions posted here
http://ryanreese.net/articles/mysterious-gap.php

oh man… THAT WORKED!!

thank you very much…