Hiding Add New Item in Sharepoint 2010

In a  SharePoint 2010 ,  if you want to remove "add new item" at the bottom of Share Point libraries or list. you might be wondering why  on the earth removing happens.  Yeah, if you want to make a list items to be non editable, otherwise you have a requirement to display all the list items.
 
Lets get into code which does the magic for us.
 
 1. Edit the Page
 2. Insert Content editor web part
 3. Place the below code                         
<style> td.ms-addnew { display:none; } </style>
 
The result is everyone to see :) Happy learning!!