以 Element-Plus UI
中的 <el-drawer>
为例
方法一
Template中
<el-drawer>
CSS中
<style lang="scss" scoped>
:deep(.el-drawer__header) {
margin: 0px 0px 0px 0px; /*上 右 下 左*/
box-sizing: border-box;
padding: 0px 0px 0px 0px; /*上 右 下 左*/
}
</style>
方法二(没有什么是加个中间层解决不了的)
Template中
<div class="el-drawer-box">
<el-drawer>
</div>
CSS中
<style lang="scss" scoped>
.el-drawer-box:deep(.el-drawer__header) {
margin: 0px 0px 0px 0px; /*上 右 下 左*/
box-sizing: border-box;
padding: 0px 0px 0px 0px; /*上 右 下 左*/
}
</style>
本站资源均来自互联网,仅供研究学习,禁止违法使用和商用,产生法律纠纷本站概不负责!如果侵犯了您的权益请与我们联系!
转载请注明出处: 免费源码网-免费的源码资源网站 » [Vue3 + TS + Vite] CSS穿透
发表评论 取消回复