Answers for "nth child css second and thrid element"

CSS
3

second child css

.YourElementsClass:nth-child(2) {
  /* your styles */
}
Posted by: Guest on March-28-2021
0

div nth child

div:nth-child(2) { 
  background: red;
}
Posted by: Guest on May-04-2021

Browse Popular Code Answers by Language