Forum Moderators: not2easy
div.tabContainer div.copy{height:80px; margin:205px 0 0 0; color:#000;}
div.tabContainer div.copy a{color:#646464; font-weight:bold; text-decoration:none; border-bottom:1px dotted #c6c1b8;} <div class="tab current" style="background:#fff url(/_images/tab-home1.jpg) no-repeat top left;">
<div class="copy">
<h1>Perspectives on healthcare reform</h1>
<p>We support meaningful <a href="/healthcare-reform/index.asp">blank reform</a> bla blah blah blah. Find <a href="/directory/index.asp">resources and information </a> about our services.</p>
</div>
</div>
display:inline-block; on the a - which amongst other things triggers haslayout. However, that requires vertical-align:bottom to align the link with the surrounding text, and that combination produces undesired alignment issues in other browsers, so it really needs to be served via a conditional comment - and I think that's overly complicated for this. position:relative - which avoids the issues associated with the commonly suggested inline-block. line-height:1; on the a fixed the issue.