This should work
$( "div p:first-of-type" ).css( "font-size: 10px" );
The above code finds the first paragraph in the div as @Denver pointed and changed its fonts-size to 10px
Here is an example that explains even more about jQuery first-of-type selector