<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>
텍스트 111111
은 오른쪽으로 이동하지 않습니다.테이블 셀에서 텍스트를 정렬하는 방법은 무엇입니까?
align:right
을 사용하면 동일합니다.
<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>
이 문제를 해결하는 방법은 무엇입니까?
차가움. 문제는 귀하의 도움으로 해결되었습니다. – Steven
문제가 해결되면 답변으로 표시 할 수 있습니다. –
도 나에게 유용했다. 고마워. – akjain