:first-child
Run
↔
<!doctype html> <html lang="vi"> <head> <meta charset="utf-8"> <title>Học web chuẩn</title> <script src="https://code.jquery.com/jquery-latest.js"></script> <script> $(function(){ $('ul li:first-child').css('background-color','#cccccc'); }); </script> </head> <body> <ul> <li>li thứ nhất</li> <li>li thứ hai</li> <li>li thứ ba</li> <li>li thứ tư</li> <li>li thứ năm</li> </ul> <ul> <li>li thứ nhất</li> <li>li thứ hai</li> <li>li thứ ba</li> </ul> </body> </html>