如何在TD的每一端显示跨度

时间:2016-09-19 21:26:49

标签: html css



<table width="200pxpx" bgcolor="#00FF00">
  <tr>
    <td>
      <span align="left">1</span>
      <span align="right">2</span>
    </td>
  </tr>
</table>
&#13;
&#13;
&#13;

我想要达到的目的是左边显示1,另一端显示2。

因此在脚本中,1和2都显示在TD的左端。

我还尝试添加&#34;对齐&#34;属于使它发生,但它也没有工作。

2 个答案:

答案 0 :(得分:1)

您正在寻找的是css风格的j = 2 while(j<n) { k=j while(k < n) { sum + = a[k]*b[k] k = k*k } k = log(n) j += log(k) }

&#13;
&#13;
float:right
&#13;
&#13;
&#13;

修改:最好将<table style="width:200px; background-color:#00FF00;"> <tr> <td> <span style="float:left;">1</span> <span style="float:right;">2</span> </td> </tr> </table>用于表格的其他样式(我相信这是HTML5标准)

答案 1 :(得分:1)

您可以使用float

<table width="200pxpx" bgcolor="#00FF00">
  <tr>
    <td>
      <span style="float:left;">1</span>
      <span style="float:right;">2</span>
    </td>
  </tr>
</table>