<span id="editlist"
style="{background:#990033;height:30px;width:184px;vertical
-align:middle;text-align:center;}">edit list</span>
The text within the SPAN still appears on the top of the
box. Is there something i'm missing, or is this an
umimplemented, yet intended, feature?
Any idea when it will operate according to specification?
.robert adams
webm...@egoz.org
Since span tag does not support valign you wont be able to use that
style to align your text.
however you might want to try this:
< div style="height:100>
< span style="position:relative;top:expression(parentElement.offsetHeight/2
- offsetHeight/2)" >your text here.< /span >
< /div >
of course it probably ony works on ie5+