我需要以编程方式设置元素的高度BootstrapTable
(因为我想确保表格将可用空间占用到浏览器窗口的底部)。我尝试height
使用 CSS 类设置 div 的CSS 属性(如果我在元素的属性中react-bs-table
设置它,那么高度会出现在那里)。看起来像这样:height
BootstrapTable
componentDidMount() {
// Calculate the height
let height = 200; // Only simluated here!
// Set the height
const tableElement = document.getElementsByClassName('react-bs-table')[0];
tableElement.style.height = height + 'px';
}
这种方法的问题是数据行BootstrapTable
溢出它的底部边框。似乎此溢出的高度是标题的高度。
如何BootstrapTable
正确设置 a 的高度(没有数据行溢出元素)?