class selector in css example
Example 1: css how to style id
/*put a # infront of the id*/
/*<section id="example"></section>*/
#example{
margin: auto;
}
Example 2: css class selector
.class{
color:red;
}
Example 3: css calss
.ThisIsAClassName{
font-family: sans-serif;
}