CSS横向滚动

版权声明:本文首发 http://asing1elife.com ,转载请注明出处。 https://blog.csdn.net/asing1elife/article/details/83104270

div中的元素需要横向滚动

更多精彩

显示效果

解决

.revelent-list-panel {
	// 指定宽度
	width: 768px;
	height: 94px;
	// 显示横线滚动条
	overflow-x: scroll;
	// 隐藏纵向滚动条
	overflow-y: hidden;
	// 内容不换行
	white-space: nowrap;
}

猜你喜欢

转载自blog.csdn.net/asing1elife/article/details/83104270