mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-29 18:48:45 +08:00
parent
3d07dd2870
commit
af07fb77e7
@ -861,10 +861,15 @@ export default class Table extends React.Component<TableProps, object> {
|
||||
while (nextSibling) {
|
||||
const positon = getComputedStyle(nextSibling).position;
|
||||
if (positon !== 'absolute' && positon !== 'fixed') {
|
||||
const rect1 = selfNode.getBoundingClientRect();
|
||||
const rect2 = nextSibling.getBoundingClientRect();
|
||||
|
||||
if (rect1.bottom <= rect2.top) {
|
||||
nextSiblingHeight +=
|
||||
nextSibling.offsetHeight +
|
||||
getStyleNumber(nextSibling, 'margin-bottom');
|
||||
}
|
||||
}
|
||||
|
||||
nextSibling = nextSibling.nextElementSibling as HTMLElement;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user