On 12/11/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
Suppose I have a table cell:
<table>
<tr><td></td></tr>
</table>
and I wanted to typeset "foo" and "bar" in the cell. I want foo to be
normal size but bar to be small font. The cell should look like:
|-----------|
| |
| |
| foo |
| |
|bar |
|-----------|
What would the CSS look like?
Thanks!
_______________________________________________
vox-tech mailing list
[email protected]
http://lists.lugod.org/mailman/listinfo/vox-tech
You might try wrapping
the "bar" in a <span> to allow you to reference it.seperate from the table
<table>
<tr><td>foo<span id="bar">bar</span></td></tr>
</table>
then in your CSS
table {font-size:10pt;}
#bar {font-size:: 8pt;}
Hope this helps,
Joshua Morris
_______________________________________________
vox-tech mailing list
[email protected]
http://lists.lugod.org/mailman/listinfo/vox-tech