how to multiple class css code example
Example 1: css change multiple classes
.objectOne, .objectTwo { /* We will now both be changed */
margin: 0 auto;
}
Example 2: multiple classes in element html
<article class="column wrapper">
.objectOne, .objectTwo { /* We will now both be changed */
margin: 0 auto;
}
<article class="column wrapper">