uniapp修改uni-ui组件样式不生效的解决方案

1,610 阅读1分钟

改样式:

.uni-table-th { background-color: #ddd; }

不起效果

解决方法:

使用深度选择器

::v-deep .uni-table-th {
	background-color: #ddd;
}

来源链接:blog.csdn.net/qq_28255733…