Advertisement
kansaramankit

Display PAge

Jul 29th, 2015
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. <html>
  2. <head>
  3. <style>
  4. #wrapper {
  5. display:table;
  6. width:100%;
  7. }
  8. #row {
  9. display:table-row;
  10. }
  11. .first {
  12. display:table-cell;
  13. background-color:black;
  14. width:33%;
  15. }
  16. .second {
  17. display:table-cell;
  18. background-color:red;
  19. width:33%;
  20. }
  21. .third {
  22. display:table-cell;
  23. background-color:orange;
  24. width:33%;
  25. }
  26. .fourth {
  27. display:table-cell;
  28. background-color:yellow;
  29. width:25%;
  30. }
  31. .fifth {
  32. display:table-cell;
  33. background-color:green;
  34. width:25%;
  35. }
  36. .sixth {
  37. display:table-cell;
  38. background-color:white;
  39. width:25%;
  40. }
  41. .seventh {
  42. display:table-cell;
  43. background-color:blue;
  44. width:25%;
  45. }
  46. </style>
  47. </head>
  48. <body>
  49. <h2 align="center" > Plantwise Report for CMPSL</h2>
  50. <!--this is the div that will hold the pie chart-->
  51. <div id="wrapper">
  52. <div id="row">
  53. <div class="first"><?php include('A1ReportQ1.php'); ?></div>
  54. <div class="second"><?php include('A2ReportQ1.php'); ?></div>
  55. <div class="third">ABC</div>
  56. </div>
  57. </div>
  58. <div id="wrapper">
  59. <div id="row">
  60. <div class="fourth">!@#</div>
  61. <div class="fifth">123</div>
  62. <div class="sixth">ABC</div>
  63. <div class="seventh">ABC</div>
  64. </div>
  65. </div>
  66. </body>
  67. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement