我想要子元素可以正常的在滚动条里面全部显示出来,可是现在子元素被隐藏了一部分,滚动都滚动不出来
在线运行
代码
<!doctype html>
<html lang="zh" style="width: 100%;height: 100%">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>flex-demo</title>
</head>
<body style="width: 100%;height: 100%;margin:0">
<div style="width: 100%;height: 100%;display: flex;flex-direction: row;justify-content: center;overflow-x: auto">
<div style="flex:none;width: 1100px;height: 40px;background: green;">
鹅鹅鹅曲项向天歌鹅心中有泪鹅想唱情歌曾经相爱了一场幸福的时光曾经说好到白头不诉悲中伤忽然之间你就要离开我身旁鹅也有眼泪流两行如
</div>
</div>
</body>
</html>