select first element of type css code example
Example 1: css first of type
:first-of-type {
//styles here
}
Example 2: select first div css
#content div:first-child {
/*css*/
}
Example 3: select first div css
#content_id div.class_name:first-child {
/*your style*/
}