Answers for "css nth child 3rd"

CSS
7

css nth child

:nth-child(3) { //the number is the child number you are targeting
	//styles here 
}
Posted by: Guest on March-03-2020
1

nth of type for every 4th after the 1st

:nth-of-type(4n+1)
Posted by: Guest on April-02-2020

Browse Popular Code Answers by Language