HTML CSS examples for CSS Selector:first-child
CSS :first-child pseudo-class simple example
<html lang="en"> <head> <style> p .field:first-child { color:Chartreuse; } </style> <!-- w ww . jav a2s . c o m--> </head> <body translate="no"> <p> <span class="field">first - should be red</span> <span class="field">second</span> </p> </body> </html>