Skip to content

Commit

Permalink
Changed ::-moz-placeholder to :-moz-placeholder. Mozilla treats -moz-…
Browse files Browse the repository at this point in the history
…placeholder as a pseudo-class. Webkit treats -webkit-placeholder as a pseudo-element.
  • Loading branch information
jgarber623 committed Apr 26, 2011
1 parent 1b88c5a commit a1be72a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/index.html
Expand Up @@ -54,7 +54,7 @@
font-style: italic; font-style: italic;
} }


form *::-moz-placeholder { form *:-moz-placeholder {
color: #aaa; color: #aaa;
font-style: italic; font-style: italic;
} }
Expand Down

1 comment on commit a1be72a

@jgarber623
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Minor typo in the commit message. It should read:

Mozilla treats -moz-placeholder as a pseudo-class. Webkit treats -webkit-input-placeholder as a pseudo-element.

Please sign in to comment.