From a1be72acd4199f76af2061f110b2b043a5560ee7 Mon Sep 17 00:00:00 2001 From: Jason Garber Date: Tue, 26 Apr 2011 10:03:50 -0400 Subject: [PATCH] Changed ::-moz-placeholder to :-moz-placeholder. Mozilla treats -moz-placeholder as a pseudo-class. Webkit treats -webkit-placeholder as a pseudo-element. --- example/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/index.html b/example/index.html index 110016f..24564da 100644 --- a/example/index.html +++ b/example/index.html @@ -54,7 +54,7 @@ font-style: italic; } - form *::-moz-placeholder { + form *:-moz-placeholder { color: #aaa; font-style: italic; }