Advertisement
Guest User

Untitled

a guest
Nov 15th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.  
  5. </head>
  6. <body>
  7. <style>
  8.  
  9. .divTable{
  10. display: table;
  11.  
  12. }
  13. .divTableRow {
  14. display: table-row;
  15. }
  16. .divTableHeading {
  17. background-color: #EEE;
  18. display: table-header-group;
  19. }
  20. .divTableCell, .divTableHead {
  21. border: 1px solid #999999;
  22. display: table-cell;
  23. padding: 3px 10px;
  24. }
  25. .divTableHeading {
  26. background-color: #EEE;
  27. display: table-header-group;
  28. font-weight: bold;
  29. }
  30. .divTableFoot {
  31. background-color: #EEE;
  32. display: table-footer-group;
  33. font-weight: bold;
  34. }
  35. .divTableBody {
  36. display: table-row-group;
  37. }
  38.  
  39. </style>
  40. <h2>HTML Table</h2>
  41.  
  42. <div class="divTable">
  43. <div class="divTableBody">
  44. <div class="divTableRow">
  45. <div class="divTableCell"><b>Product</b></div>
  46. <div class="divTableCell"><b>Consumption</b></div>
  47. <div class="divTableCell"><b>Lot</b></div>
  48. </div>
  49. <div class="divTableRow">
  50. <div class="divTableCell" style="max-width:10px;word-wrap: break-word;">adasdasdsdfsdfsdfsdfsdfsd</div>
  51. <div class="divTableCell">10</div>
  52. <div class="divTableCell">1</div>
  53. </div>
  54. </div>
  55. </div>
  56.  
  57. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement