Guest User

Untitled

a guest
Sep 13th, 2020
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. <html xmlns="http://www.w3.org/1999/xhtml">
  2. <head runat="server">
  3. <title>payments page</title>
  4. <style>
  5. #tab-div {
  6. float:left;
  7. width:30%;
  8. height:100%;
  9. background-color:red;
  10. text-align:center
  11. }
  12. #form-div {
  13. float:right;
  14. width:70%;
  15. height:100%;
  16. background-color:blue;
  17. }
  18. .table-cell {
  19. padding: 15px 15px 15px 15px;
  20. text-align:center;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <form id="payments_form" runat="server">
  26. <div style="width:100%; height:100%">
  27. <div id="tab-div">
  28. <asp:Table runat="server" CellPadding="10" Width="100%">
  29. <asp:TableRow runat="server">
  30. <asp:TableCell runat="server" Text="Cell1" Width="100%" CssClass="table-cell"/>
  31. </asp:TableRow>
  32. <asp:TableRow runat="server">
  33. <asp:TableCell runat="server" Text="Cell2" Width="100%" CssClass="table-cell"/>
  34. </asp:TableRow>
  35. </asp:Table>
  36. </div>
  37. <div id="form-div">
  38.  
  39. </div>
  40. </div>
  41. </form>
  42. </body>
  43. </html>
Add Comment
Please, Sign In to add comment