shineout
Version:
Shein 前端组件库
12 lines • 449 B
JavaScript
export default function flexGapSupport() {
var flex = document.createElement('div');
flex.style.display = 'flex';
flex.style.flexDirection = 'column';
flex.style.rowGap = '1px';
flex.appendChild(document.createElement('div'));
flex.appendChild(document.createElement('div'));
document.body.appendChild(flex);
var isSupported = flex.scrollHeight === 1;
if (flex.parentNode) flex.parentNode.removeChild(flex);
return isSupported;
}