how to suse css for id and class code 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 id
css
.class
#id
/*put a # infront of the id*/
/*<section id="example"></section>*/
#example{
margin: auto;
}
css
.class
#id