select third element of an id css

CSS
p:nth-of-type(2) {
   background: red;
}
  
   
    p:nth-of-type(odd)
 {

   background: red;

 }
  
 dl#id dd:nth-of-type(3)
Source

Also in CSS: