css id w3schools code example
Example 1: css how to style id
/*put a # infront of the id*/
/**/
#example{
margin: auto;
}
Example 2: css class id
css
.class
#id
/*put a # infront of the id*/
/**/
#example{
margin: auto;
}
css
.class
#id