Search code examples
htmlcssmdc-components

MDC: How to style label text?


How do I style label color?

enter image description here

The following code doesn't work:

<style>
.mdc-floating-label{
   color: #808080;
}
.mdc-floating-label--float-above{
  color:  #808080;
}
.mdc-floating-label--shake{
  color:  #808080;
}
</style>

Solution

  • Add !important at the end of color values.

    <style>
    .mdc-floating-label{
       color: #808080 !important;
    }
    .mdc-floating-label--float-above{
      color:  #808080 !important;
    }
    .mdc-floating-label--shake{
      color:  #808080 !important;
    }
    </style>