CSS中position: fixed定位后div中内容不能滚动

问题描述

div设置定位后,内容不能滚动。

解决方案

.container {
	position: fixed;
	top: 116px;
	bottom: 0px;
	overflow-x: hidden;
	overflow-y: scroll;
}

你可能感兴趣的:(Web前端,css,前端)