0

我想用类名 .md-table-cell-container 更改子 div md-table-cell 的填充样式

我尝试:

<style lang="scss" scoped>
 .md-table-cell-container {
    padding: 0px !important;
  }
</style>

但没有成功。有人能帮我吗?

4

1 回答 1

1

我找到了解决方案:

<style lang="scss" scoped>
...
</style>

<style lang="css">
  .md-table-cell-container {
    padding: 0px !important;
  }
  .md-table-head-label {
    padding-left: 0px !important;
  }
</style>
于 2018-02-28T22:22:16.190 回答