select first two elements css code example
Example 1: select first div css
#content div:first-child {
/*css*/
}
Example 2: select first 5 child css
li:nth-child(-n+5) {
color: green;
}
#content div:first-child {
/*css*/
}
li:nth-child(-n+5) {
color: green;
}