以 Element-Plus UI
中的 <el-drawer>
为例
方法一
Template中
typescript
<el-drawer>
CSS中
typescript
<style lang="scss" scoped>
:deep(.el-drawer__header) {
margin: 0px 0px 0px 0px; /*上 右 下 左*/
box-sizing: border-box;
padding: 0px 0px 0px 0px; /*上 右 下 左*/
}
</style>
方法二(没有什么是加个中间层解决不了的)
Template中
typescript
<div class="el-drawer-box">
<el-drawer>
</div>
CSS中
typescript
<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>