【爬坑日記】ivew中自定義css覆蓋原樣式無效

BenjaminC發表於2018-07-03

原因很可能是因為在<style>標籤中寫了scoped屬性

注:如果在<style>加上socped代表本元件的樣式,不汙染全域性


解決辦法:

一個vue檔案可以寫多個<style>標籤

所以可以這樣寫

<style lang="scss" scoped>
  .ivu-select {
    color: #ccc;
  }
</style>

<style lang="scss">
  .ivu-select-dropdown {
    max-height: 80px;
  }
</style>
複製程式碼

相關文章