Horje
css first child Code Example
css first child
:first-child {
	//styles here
}

:nth-child(1) { //the benefit of this is you can do it for 2nd, 3rd etc...
	//styles here 
}
css first child
/*CSS First - forth child*/
:first-child {}

:nth-child(2){}
:nth-child(3){}
:nth-child(4){}
first-child
p:first-child {
  background-color: yellow;
}
select first 5 child css
li:nth-child(-n+5) {
    color: green;   
}
css first child
selector:first-child{
  //style
  
}




12

Related
css reset style Code Example css reset style Code Example
how to set css style using jquery Code Example how to set css style using jquery Code Example
css cursor pointer Code Example css cursor pointer Code Example
text overflow ellipsis css Code Example text overflow ellipsis css Code Example
css flex center horizontally and vertically Code Example css flex center horizontally and vertically Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11