I am not so pro in CSS and JavaScript. I am working on an article website where users create and edit articles. Currently whenever user wants to delete or edit an article, he clicks some button given below each DIV that represents an article. The code is like this
<div id="article"><!-- article data --></div>
<asp:Button ID="Button1" runat="server" onclick="Button1_Click"
style="height: 26px" Text="Delete" />
But what I want is, this delete button must not be visible when page loads. It should only be visible when user hovers mouse over the corresponding div and also it should overlap the div in bottom-right corner of the div. Please tell me how can I do this?