diff --git a/build/css/ox.ui.classic.css b/build/css/ox.ui.classic.css
index 84171cb7..d96b4e59 100644
--- a/build/css/ox.ui.classic.css
+++ b/build/css/ox.ui.classic.css
@@ -109,7 +109,8 @@ Forms
-moz-box-shadow: 0 0 2px rgb(128, 128, 128);
-webkit-box-shadow: 0 0 2px rgb(128, 128, 128);
}
-.OxThemeClassic input.OxInput.OxPlaceholder {
+.OxThemeClassic input.OxInput.OxPlaceholder,
+.OxThemeClassic textarea.OxInput.OxPlaceholder {
color: rgb(160, 160, 160)
}
diff --git a/demos/test/index.html b/demos/test/index.html
index b77d861f..7f95368d 100644
--- a/demos/test/index.html
+++ b/demos/test/index.html
@@ -512,6 +512,7 @@
$("
").appendTo(mainPanel.$element);
$("
").appendTo(mainPanel.$element);
Ox.Input({
+ placeholder: "some\ntext",
type: "textarea"
}).width(400).height(200).addClass("margin").appendTo(mainPanel);