diff --git a/src/lib/input/input-container.scss b/src/lib/input/input-container.scss index 819f10f7b37d..9afc0c7f0990 100644 --- a/src/lib/input/input-container.scss +++ b/src/lib/input/input-container.scss @@ -117,7 +117,9 @@ $mat-input-underline-disabled-background-image: // display: none, because IE ends up preventing the user from // focusing the input altogether. @include input-placeholder { - color: transparent; + // Needs to be !important, because the placeholder will end up inheriting the + // input color in IE, if the consumer overrides it with a higher specificity. + color: transparent !important; } }