I've experimented with display: block; and vertical-align: bottom;
Unfortunately, neither of these styles have successfully eliminated the gap between the image and the div.
The code I am working with is based on HTML5 and utilizes an external CSS stylesheet.
HTML:
<p id="missionMembers">
<img src="" border"0"/>
</p>
<div id="footer">
<div class="twitter-hover social-slide"> </div>
<div class="facebook-hover social-slide"> </div>
<a href= "http://www.youtube.com/channel/UCQUQ1EHTu705qdNWaFAz0SA"/> <div class="youtube-hover social-slide"> </div></a>
</div>
CSS:
#missionMembers {
text-align: center;
margin: 0em 0em 0em 0em;
padding: 0em 0em 0em 0em;
vertical-align: middle;
font-size: 0;
display: block;
}
#footer {
padding-left: 2em;
padding-right: 2em;
margin: 0em 0em 0em 0em;
background-color:black;
height: 68px;
width: 2000px;
border: 0em 0em 0em 0em;
vertical-align: top;
}
(#missionMembers represents the image. #footer corresponds to the div.)