一般來說我們要將頁面中的table我們會這樣寫
<table align="center">
但是如果要寫在css中的話正常的想法會寫成這樣
table {text-align:center}
但這完全是沒效果的
你必需寫成這樣才會真正的置中
table{
margin-left:auto; 
margin-right:auto;
}

ylw1125 發表在 痞客邦 留言(0) 人氣()