how ot select class and id in javascript in css 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 selector
.class{
color:red;
}
/*put a # infront of the id*/
/*<section id="example"></section>*/
#example{
margin: auto;
}
.class{
color:red;
}