HTML Element Style How to - Add style to the last list item








Question

We would like to know how to add style to the last list item.

Answer


<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
  src='http://code.jquery.com/jquery-1.9.1.js'></script>
<style type='text/css'>
.last {<!--from  ww w .  j a v a 2s. c  om-->
  border: 1px solid blue;
}
</style>
<script type='text/javascript'>//<![CDATA[ 
$(window).load(function(){
   $(".feed_wrapper > li:last-child").addClass("last");
});//]]>  
</script>
</head>
<body>
  <ul class="feed_wrapper">
    <li>one</li>
    <li>two</li>
    <li>three</li>
  </ul>
</body>
</html>

The code above is rendered as follows: