diff --git a/demos/input/main.html b/demos/input/main.html
index 57c23cabbc..2a2c1d3c2e 100644
--- a/demos/input/main.html
+++ b/demos/input/main.html
@@ -33,5 +33,8 @@
+
+
+
diff --git a/src/components/input/input.ios.scss b/src/components/input/input.ios.scss
index dabb02dd45..9f07c0e8b1 100644
--- a/src/components/input/input.ios.scss
+++ b/src/components/input/input.ios.scss
@@ -80,7 +80,6 @@ ion-input[clearInput] {
bottom: 0;
width: $text-input-ios-input-clear-icon-width;
- height: 34px;
background-size: $text-input-ios-input-clear-icon-size;
}
diff --git a/src/components/input/input.ts b/src/components/input/input.ts
index b748e68545..6b4ada715a 100644
--- a/src/components/input/input.ts
+++ b/src/components/input/input.ts
@@ -30,33 +30,44 @@ import {Platform} from '../../platform/platform';
* `checkbox`, `radio`, `toggle`, `range`, `select`, etc.
*
* @property [type] - The HTML input type (text, password, email, number, search, tel, or url)
- * @property [clearInput] - A clear icon will appear in the input which clears it
+ * @property [clearInput] - A clear icon will appear in the input when there is a value. Clicking it clears the input.
*
* @usage
* ```html
- *
- * Username
- *
- *
+ *
+ *
+ * Inline Label
+ *
+ *
*
- *
- * Website
- *
- *
+ *
+ * Fixed Label
+ *
+ *
*
- *
- * Email
- *
- *
+ *
+ *
+ *
*
- *
- * Phone
- *
- *
+ *
+ * Stacked Label
+ *
+ *
*
- *
- *
- *
+ *
+ * Stacked Label
+ *
+ *
+ *
+ *
+ * Floating Label
+ *
+ *
+ *
+ *
+ *
+ *
+ *
* ```
*
* @demo /docs/v2/demos/input/