1

テーブルを作成するには、以下のコードが気に入っています。ただし、分数方程式の右側に「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>
4

3 に答える 3

1

これはあなたが求めているものですか?式が正しく見えるように、x= を =x に変更しました。

<table class="fraction" align="center" cellpadding="0" cellspacing="0">
<tr>
    <td nowrap="nowrap">
        <i>x</i><sup>2</sup> + <i>x</i> + 1
    </td>
    <td rowspan="2" nowrap="nowrap">
      =  <i>x</i>  
    </td>
</tr><tr>
    <td class="upper_line">
        2 cos(<i>x</i>)
    </td>
</tr> </table>
于 2012-12-07T12:26:56.960 に答える
0
<html>
<head>
<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>
</head>
<body>


<table class="fraction" align="center" cellpadding="0" cellspacing="0">
    <tr>

        <td nowrap="nowrap"> <i>x</i> <sup>2</sup> + <i>x</i> + 1</td>
                       <td  rowspan="2" nowrap="nowrap"> = <i>x</i>  </td>
    </tr>
    <tr>

        <td class="upper_line">2 cos(<i>x</i>)</td>
    </tr>


</table>
</body>
</html>
于 2012-12-07T12:27:50.953 に答える
0

ということですか:

<td rowspan="2" nowrap="nowrap"> <i>x</i> = </td>
<td nowrap="nowrap"> <i>x</i> <sup>2</sup> + <i>x</i> + 1</td>

<td nowrap="nowrap"> <i>x</i> <sup>2</sup> + <i>x</i> + 1</td>
<td rowspan="2" nowrap="nowrap"> <i>x</i> = </td>
于 2012-12-07T12:28:01.873 に答える