Wie die Ausrichtung von text in einer Tabellenzelle?

<table>
   <tr>
      <td>
         <input type="checkbox" id="41" value="1">   
         Don't overwhelm yourself
         <span style="color:black;float:right">111111</span>
      </td>
   </tr>
</table>

Den text 111111 nicht nach rechts gehen.

Wenn ich align:right ist es das gleiche.

<table>
   <tr>
      <td>
         <input type="checkbox" id="41" value="1">   
         Don't overwhelm yourself
         <span style="color:black;align:right">111111</span>
      </td>
   </tr>
</table>

Wie dieses problem zu lösen?

InformationsquelleAutor Steven | 2009-11-07
Schreibe einen Kommentar