<br><br><div><span class="gmail_quote">On 12/11/06, <b class="gmail_sendername"><a href="mailto:p@dirac.org">p@dirac.org</a></b> <<a href="mailto:p@dirac.org">p@dirac.org</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Suppose I have a table cell:<br><br> <table><br> <tr><td></td></tr><br> </table><br><br>and I wanted to typeset "foo" and "bar" in the cell. I want foo to be<br>
normal size but bar to be small font. The cell should look like:<br><br><br><br>|-----------|<br>| |<br>| |<br>| foo |<br>| |<br>|bar |<br>|-----------|<br><br><br>What would the CSS look like?
<br><br>Thanks!<br>_______________________________________________<br>vox-tech mailing list<br><a href="mailto:vox-tech@lists.lugod.org">vox-tech@lists.lugod.org</a><br><a href="http://lists.lugod.org/mailman/listinfo/vox-tech">
http://lists.lugod.org/mailman/listinfo/vox-tech</a><br></blockquote></div><br><br>You might try wrapping <br>the "bar" in a <span> to allow you to reference it.seperate from the table<br><br><table>
<br> <tr><td>foo<span id="bar">bar</span></td></tr><br></table><br><br><br>then in your CSS<br>table {font-size:10pt;}<br>#bar {font-size:: 8pt;}<br><br>Hope this helps,
<br><br>Joshua Morris<br>