2012-07-05 83 views

回答

2

嘿,你可以做到這一點

<td align="center" valign="middle" id="refKey_1">1.0</td> 

-------------或

在CSS

td#refkey_1{ 
text-align:center; 
} 
0

<td align="center">將是最簡單和最快的。

2

使用CSS,你可以做

text-align:center 
1
<td id="refKey_1" style="text-align:center;">1.0</td> 

或使用css

tr td#refKey_1{ text-align:center } 
相關問題