2010-05-10 80 views

回答

2

如果要居中的內聯元素的容器設置爲:

text-align:center; eg: 
<div style="text-align:center;"><input type="submit" value="Center Me!"></div> 

如果要居中的塊級元素將其設置爲:

margin:auto; eg: 
<div style="margin:auto;">Im in the middle</div> 
1

最簡單的辦法就是把

<td align="center"> 
    --content here-- 
</td> 
0

這很簡單..

<div> 
     //your html code .. 
     <table> 
       //data inside the table .. 
       <button align="center"> Click here </button>   
     </table> 
    </div>