uni-app横向滑动内容自适应宽度的css

.tab {
	position: fixed;
	top: var(--window-top);
	width: 100%;
	height: 80upx;
	border-bottom: 1px solid #eee;
	background-color: #fff;
	white-space: nowrap; /* 主要 */

	.item {
		width: auto; /* 主要 */
		padding: 0 20upx;
		line-height: 80upx; 
		display: inline-block; /* 主要 */
		color: #444;
		font-size: 28upx;
	}
}

 

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