<html>
<head>
<style>
.test {
display: -ms-flex; /* 兼容IE */
display: flex;
}
.test-child {
-ms-flex: 1; /* 兼容IE */
flex: 1;
}
</style>
</head>
<body>
<div class="test">
<div class="test-child">子元素</div>
<div class="test-child">子元素</div>
</div>
</body>
</html>
来源:CSDN
作者:小鲤鱼听听
链接:https://blog.csdn.net/qq_36485978/article/details/99971091