How To Select the First Table Cell in the First Row Using CSS

Author: , April 19th, 2014

table.myTable > tbody > tr:first-child > td:first-child

How To Focus On The First Form Element Using jQuery

Author: , June 10th, 2011

How To Select The First Or Last Child Using CSS

Author: , April 25th, 2011

Use the :first-child or :last-child CSS Selectors The :first-child pseudo class means “if this element is the first child of its parent”. :last-child means “if this element is the last child of its parent”. Note that only element nodes (HTML tags) count, these pseudo-classes ignore text nodes. Click here for the original article on Quirksmode