Question : button vanish?

the buttons vanish from the screen when i have the labels  as below in my asp.net app
 .buttons
{ position :relative;
 top:420px;
 left:10px;
   margin-left:0px;
 float :left;
 clear: both;
         
        }         
     .left
{ position :relative;
 
  float:left;
    background-image :url('images/back2.png');
    background-repeat: no-repeat;
    height :515px;
    width:200px;
}  

 
  .two
 {
  position :relative;
 top:150px;
 left:20px;  
 
  }
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
 <td rowspan="2" >
                     <div class="left">
                     
                       <div class="two">
                       <asp:Label  ID="Label5" runat="server" Text="Label"></asp:Label>
                          <br />
                          <br />
                       <asp:Label  ID="Label6" runat="server" Text="Label"></asp:Label>
                          <br />
                          <br />
                       <asp:Label  ID="Label7" runat="server" Text="Label"></asp:Label>
                          <br />
                          <br />
                       <asp:Label  ID="Label8" runat="server" Text="Label"></asp:Label>
                          <br />
                          <br />
                       <asp:Label  ID="Label9" runat="server" Text="Label"></asp:Label>
                      </div>
                    
                     
                       <div class="buttons">
                       
                           <asp:Button  ID="Button1"  Width="35px" height="30px" runat="server" Text="Button" />
                         <asp:Button ID="Button2" Width="35px" height="30px" runat="server" Text="Button" />
                         <asp:Button ID="Button3" Width="35px" height="30px" runat="server" Text="Button" />
                         <asp:Button ID="Button4" Width="35px" height="30px" runat="server" Text="Button" />
                         <asp:Button ID="Button5" Width="35px" height="30px" runat="server" Text="Button" />
                       </div>
                       
                       
                     </div>

Answer : button vanish?

Random Solutions  
 
programming4us programming4us