Hi All,
I want two controls to overlap each other. below are the controls
<div>
<asp:Button ID="Test1" runat="server" Text="test1" CssClass="img" />
<asp:Button ID="test2" runat="server" Text="test2" CssClass="img" />
</div>
style sheet is
<style type="text/css">
img {
position: absolute;
left: 0px;
top: 0px;
z-index: -1;
}
</style>
after overlapping, I don't want if the top control is clicked then the bottom control is clicked too. I want to avoid clicking the bottom control.
Thanks.
Go to the complete details ...