익스에서만 align='center' 중앙 정렬이 안먹히네요 ㅠ,ㅠ
본문
<tr>
<td height='25' align='center'>
<table width='100%' border='0' cellspacing='0' cellpadding='0'>
<tr>
<BODY onLoad='reverse_counter()'>
<span align='center' size='56' style='color:red;' id='counter_sale'/> <-- 결과값 출력
</BODY>
</tr>
</table>
</td>
</tr>
소스 보면 결과값 출력하는곳이 가운데 정렬이 안됩니다 ㅠ,ㅠ
왜 안되는건지 ㅠ,ㅠ 파이어폭스,크롬에서는 잘 되는데 ㅠ,ㅠ 익스에서만 문제를 발생하네요 ㅠ,ㅠ
!-->
답변 2
style='color:red;' 부분에 width:500px; text-align:center; 를 추가해 보세요.
width값은 적당히 조절
style='color:red; width:500px; text-align:center;'
<td height='25' align='center'>
<table width='100%' border='0' cellspacing='0' cellpadding='0'>
<tr>
<td align='center' >
<BODY onLoad='reverse_counter()'>
<span size='56' style='color:red;' id='counter_sale'/> <-- 결과값 출력
</BODY>
</td>
</tr>
</table>
</td>
</tr>
답변을 작성하시기 전에 로그인 해주세요.