diff --git a/docs/modules/Components.md b/docs/modules/Components.md
index 2ed028fcf..25bf8ba10 100644
--- a/docs/modules/Components.md
+++ b/docs/modules/Components.md
@@ -838,7 +838,17 @@ domc.addType('component-css', {
},
});
```
-
+::: tip Component-first styling
+By default, when you select a component in the canvas and apply styles on it, changes will be applied on its existent classes. This will result on changing of all the components with those applied classes. If you need the style to be applied only on the specific selected component you have to select componentFirst strategy in this way.
+```js
+grapesjs.init({
+ ...
+ selectorManager: {
+ componentFirst: true,
+ },
+})
+```
+:::
diff --git a/src/css_composer/model/CssRule.js b/src/css_composer/model/CssRule.js
index 9f69f525c..4941a2ca6 100644
--- a/src/css_composer/model/CssRule.js
+++ b/src/css_composer/model/CssRule.js
@@ -79,7 +79,7 @@ export default class CssRule extends Model.extend(Styleable) {
}
/**
- * Return the at-rule statement when exists, eg. `@media (...)`, `@keyframes`
+ * Returns the at-rule statement when exists, eg. `@media (...)`, `@keyframes`
* @returns {String}
* @example
* const cssRule = editor.Css.setRule('.class1', { color: 'red' }, {
diff --git a/src/dom_components/model/Component.js b/src/dom_components/model/Component.js
index 54c7b5acd..9b04a0d96 100644
--- a/src/dom_components/model/Component.js
+++ b/src/dom_components/model/Component.js
@@ -79,6 +79,7 @@ export const keyUpdateInside = `${keyUpdate}-inside`;
* @property {Boolean} [selectable=true] Allow component to be selected when clicked. Default: `true`
* @property {Boolean} [hoverable=true] Shows a highlight outline when hovering on the element if `true`. Default: `true`
* @property {Boolean} [void=false] This property is used by the HTML exporter as void elements don't have closing tags, eg. `
`, `