Posted by Trevor on 04/29/06 00:58
Note the following html code:
<div id="linkbar">
<p>
links
</p>
</div>
Now take a look at this CSS:
#linkbar {
height: 30px;
text-align: center;
}
#linkbar p {
vertical-align: middle;
}
Why isn't the text in the div aligned vertically? What's the best way
to do what I want?
Thank you,
Trevor
[Back to original message]
|