Vue Material md-table md-table-cell

时间:2018-02-28 18:36:12

标签: vue.js vue-material

我想用classname .md-table-cell-container

更改子div md-table-cell的填充样式

我想:

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

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

1 个答案:

答案 0 :(得分: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>