0
我創建一個表如下使用Javascript - 表頭中心對齊
table = document.createElement('table');
table.style.textAlign = 'center';
table.setAttribute('border', '2');
var thead = document.createElement('thead');
thead.style.color = "fuchsia ";
thead.style.textAlign = 'center';
當我填充表,行內容爲中心的預期,但標題行始終是左對齊排列。我能做些什麼來使它居中對齊?
由於
@oGeez其實我是在一個js文件中動態創建表。 我使用'var resultDiv = document.getElementById(「resultDiv」); document.createElement('table');' – dopplesoldner
我知道對不起,我衝了下去。你需要在'thead'裏面的行和單元格元素。 – George
Klors解決方案爲我解決了它。謝謝 – dopplesoldner