FIRST ELEMENT OF PARENT CSS code example
Example 1: css first h element
p:first-of-type {
font-size: 1.25em;
}
Example 2: select first div css
#content div:first-child {
/*css*/
}
p:first-of-type {
font-size: 1.25em;
}
#content div:first-child {
/*css*/
}