diff --git a/src/lib/input/input-container.scss b/src/lib/input/input-container.scss index 4e9a82c4080d..2ea6cfe4180d 100644 --- a/src/lib/input/input-container.scss +++ b/src/lib/input/input-container.scss @@ -15,10 +15,19 @@ md-input-container { } .md-input-element { + // Note that we can't use something like visibility: hidden or + // display: none, because IE ends up preventing the user from + // focusing the input altogether. &::placeholder { - // Note that we can't use something like visibility: hidden or - // display: none, because IE ends up preventing the user from - // focusing the input altogether. + color: transparent; + } + &::-moz-placeholder { + color: transparent; + } + &::-webkit-input-placeholder { + color: transparent; + } + &:-ms-input-placeholder { color: transparent; }