travisbrown
Technical User
- Dec 31, 2001
- 1,016
Trying to get the text in the right-float to align at the bottom of the span, same baseline as the image in the left-span.
Any ideas?
<span class=logo style=""><a href="/smsil/default.asp"><img src="images/sitlogo.jpg" alt="Strategic Management Seminar Logo" border="0" ></a></span><span class=navspan style="">
text 1 : text 2 : text 3</span>
<div class="spacer" style=""> </div>
</div>
css:
.navspan {
float: right;
height: 62px;
vertical-align: text-bottom;
border:1px solid black;
}
.logo {
float: left; z-index: 1;
}
div.spacer {
clear: both;
font-size: 1px;
}
Any ideas?
<span class=logo style=""><a href="/smsil/default.asp"><img src="images/sitlogo.jpg" alt="Strategic Management Seminar Logo" border="0" ></a></span><span class=navspan style="">
text 1 : text 2 : text 3</span>
<div class="spacer" style=""> </div>
</div>
css:
.navspan {
float: right;
height: 62px;
vertical-align: text-bottom;
border:1px solid black;
}
.logo {
float: left; z-index: 1;
}
div.spacer {
clear: both;
font-size: 1px;
}