Advertisement
Guest User

Untitled

a guest
Sep 20th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.05 KB | None | 0 0
  1. <table class="divTable" border="1" cellspace="0" cellpadding="0" style="width:1134px; height:756px;">
  2. <tbody class="divTableBody">
  3. <tr class="divTableRow">
  4. <td class="divTableCell" style="width:900px; height:194px;" colspan="4"></td>
  5. <td class="divTableCell" style="width:234px; height:194px;"></td>
  6. </tr>
  7. <tr class="divTableRow">
  8. <td colspan="5" style="width:1134px; height:185px;"></td>
  9. </tr>
  10. <tr class="divTableRow" style="padding-top:100px;">
  11. <td class="divTableCell" rowspan="2" style="width:140px; height:293px;"></td>
  12. <td class="divTableCellRadioButton" style="width:35px; height:146px;">
  13. <input type="radio" name="gender" value="male" >
  14. </td>
  15. <td class="divTableCell" rowspan="2" style="width:251px; height:293px;"></td>
  16. <td class="divTableCellRadioButton" style="width:35px; height:146px;"></td>
  17. <td class="divTableCell" rowspan="2" style="width:673px; height:293px;"></td>
  18. </tr>
  19. <tr class="divTableRow">
  20. <td class="divTableCellRadioButton" style="width:35px; height:146px;"></td>
  21. <td class="divTableCellRadioButton" style="width:35px; height:146px;"></td>
  22. </tr>
  23. <tr class="divTableRow">
  24. <td class="divTableCell" style="width:1000px; height:84px;" colspan="4"></td>
  25. <td class="divTableCell" style="width:134px; height:84px;"></td>
  26. </tr>
  27. </tbody>
  28. </table>
  29.  
  30. .divTable {
  31. display: table;
  32. }
  33.  
  34. .divTableRow {
  35. display: table-row;
  36. }
  37.  
  38. .divTableHeading {
  39. background-color: #EEE;
  40. display: table-header-group;
  41. }
  42.  
  43. .divTableCell, .divTableHead {
  44. display: table-cell;
  45. padding: 3px 10px;
  46. }
  47.  
  48. .divTableHeading {
  49. background-color: #EEE;
  50. display: table-header-group;
  51. font-weight: bold;
  52. }
  53.  
  54. .divTableFoot {
  55. background-color: #EEE;
  56. display: table-footer-group;
  57. font-weight: bold;
  58. }
  59.  
  60. .divTableBody {
  61. display: table-row-group;
  62. }
  63.  
  64. .divTableRow {
  65. display: table-row;
  66. text-align:center;
  67. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement