id in css

CSS
#id{
    color:red;
}/*put a # infront of the id*/
/*<section id="example"></section>*/
#example{
	margin: auto;
}In the CSS, a class selector is a name preceded by a full stop (“.”) and an ID selector is a name preceded by a hash character (“#”). The difference between an ID and a class is that an ID can be used to identify one element, whereas a class can be used to identify more than one<style>
  #selector {
  color: red;
}
/* # is id selector */
</style>


<div id="selector">
<p>This is an id</p>
</div>


Source

Also in CSS: