我在页面上有一个表格,并使用数据表检索和显示内容。但是柱子没有与中心对齐。这就是它现在的样子。 Click Here 。这就是我创建表格的方式
this.$nextTick(() => {
let domRect = document.querySelector('.error').getBoundingClientRect();
window.scrollTo(
domRect.left + document.documentElement.scrollLeft,
domRect.top + document.documentElement.scrollTop
);
});
Html代码:
var options = new ChromeOptions();
options.AddArguments("disable-infobars");
options.AddArguments("--start-maximized");
options.AddArguments("--disable-extensions");
var chromeDriver = new ChromeDriver(options);
答案 0 :(得分:0)
在定义数据表时添加:
"columnDefs": [
{"className": "dt-center", "targets": "_all"}
]
将此添加到您的CSS:
th.dt-center, td.dt-center { text-align: center; }