how to select the last type of an element in html

64

how to select the last type of an element in html -

/* Selects any <p> that is the last element
   of its type among its siblings */
p:last-of-type {
  color: lime;
}

Comments

Submit
0 Comments