diff --git a/tips/02-inline-styles.md b/tips/02-inline-styles.md index 80e89edd..1f61596a 100644 --- a/tips/02-inline-styles.md +++ b/tips/02-inline-styles.md @@ -7,7 +7,7 @@ next: if-else-in-JSX.html prev: introduction.html --- -In React, inline styles are not specified as a string, but as an object whose key is the camelCased version of the style name, and whose value is the style's value in string: +In React, inline styles are not specified as a string. Instead they are specified with an object whose key is the camelCased version of the style name, and whose value is the style's value, usually a string ([more on that later](/react/tips/style-props-value-px.html)): ```js /** @jsx React.DOM */ @@ -21,4 +21,4 @@ var divStyle = { React.renderComponent(