diff --git a/guide/english/html/css-classes/index.md b/guide/english/html/css-classes/index.md index 55585b2148..cbf2d582df 100644 --- a/guide/english/html/css-classes/index.md +++ b/guide/english/html/css-classes/index.md @@ -3,7 +3,7 @@ title: CSS Classes --- ## CSS Classes -Classes are an efficient way of grouping HTML elements so that they can share the same styles. CSS (Cascading Style Sheets) classes can be used to arrange and decorate web page elements. +Classes are an efficient way of grouping HTML elements so they can share the same styles. CSS (Cascading Style Sheets) classes can be used to arrange and decorate web page elements. When writing HTML, you can add classes to an element. Just add the attribute `class="myclass"` to the element. Multiple elements can have the same class, and one element can have multiple classes. You can assign multiple classes to an element by adding all the desired class names separated by a space to the `class` attribute in HTML. @@ -12,7 +12,7 @@ When writing HTML, you can add classes to an element. Just add the attribute `cl
is a popular catchphrase that Super Man often said.
``` -You can then style these elements with CSS. Classes are referenced with a period (.) before them in CSS, but you should not put periods in your HTML. +You can then style these elements with CSS. Classes are referenced with period (.) before them in CSS, but you should not put periods in your HTML. `