how tot target first p of div in css code example
Example 1: css first h element
p:first-of-type {
font-size: 1.25em;
}
Example 2: select first div css
#content_id div.class_name:first-child {
/*your style*/
}
p:first-of-type {
font-size: 1.25em;
}
#content_id div.class_name:first-child {
/*your style*/
}