我喜欢下面的代码来创建一个表;但是,我希望在小数方程的右侧有“x =”部分。目前,“x =”位于分数方程的左侧。
如何更改代码,使“x =”在右侧?
<style>
td.upper_line { border-top:solid 1px black; }
table.fraction { text-align: center; vertical-align: middle;
margin-top:0.5em; margin-bottom:0.5em; line-height: 2em; }
</style>
<table class="fraction" align="center" cellpadding="0" cellspacing="0">
<tr>
<td rowspan="2" nowrap="nowrap"> <i>x</i> = </td>
<td nowrap="nowrap"> <i>x</i> <sup>2</sup> + <i>x</i> + 1</td>
</tr>
<tr>
<td class="upper_line">2 cos(<i>x</i>)</td>
</tr>
</table>