diff --git a/src/ng/directive/ngStyle.js b/src/ng/directive/ngStyle.js index 3a627f8fa2fa..6d84ffd5ff8e 100644 --- a/src/ng/directive/ngStyle.js +++ b/src/ng/directive/ngStyle.js @@ -12,11 +12,15 @@ * @param {expression} ngStyle {@link guide/expression Expression} which evals to an * object whose keys are CSS style names and values are corresponding values for those CSS * keys. - * + * For some CSS elements, they must be surounded with single quotes('). The single quote must be used for AngularJS + * to recognize the property and the value. They should each be surrounded in there own set of quotes as shown in the + * example with 'background-color' below. + * * @example +
Sample Text