站长资源
中国站长网站

flex布局中使用white-space:nowrap导致布局错乱

解决办法,父div设置min-width:0即可:

<div style="width:100%;display:flex;height:80px"><div style="width:50px"><img src="~/Content/Img/2.png" style="height:50px;" /></div><div style="flex:1;min-width:0">
		<div style="width:100%;height:40px;text-align:left;font-size:16px">
			*******
		</div>
		<div style="width:100%;height:40px;text-align:left;font-size:14px;padding-left:20px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis">
		 *********
		</div>
	</div>
	<div class="clearfix"></div>
</div>

本文出处:来自互联网信息共享,请勿相信收费信息站长资源 » flex布局中使用white-space:nowrap导致布局错乱

评论 抢沙发

评论前必须登录!