Advertisement
Guest User

Untitled

a guest
Sep 4th, 2015
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.21 KB | None | 0 0
  1. |-----------| |----------|
  2. | | | |
  3. | Div1 | | |
  4. | | | Div2 |
  5. | | | |
  6. |-----------| | |
  7. |----------|
  8.  
  9. |----------------------------|
  10. | |
  11. | DIV 3 |
  12. |----------------------------|
  13.  
  14. |-----------| |----------|
  15. | | | |
  16. | Div1 | | |
  17. | | | Div2 |
  18. | | | |
  19. |-----------| | |
  20. |-----------------------------------|
  21. | |
  22. | DIV 3 |
  23. |-----------------------------------|
  24.  
  25. <div id = 'divforimg'>
  26. <img width="300px" height="300px" id = 'appimage'>
  27. </div>
  28.  
  29. <div class = "divforinfo" id = "divinfo">
  30. <i><p id = "appdesc"></p></i>
  31. <strong>Price: </strong><label id = "appprice"></label><br>
  32. <strong>Brand: </strong><label id = "appbrand"></label><br>
  33. <strong>Color: </strong><label id = "appcolor"></label><br>
  34. <strong>Model: </strong><label id = "appmodel"></label><br>
  35. <strong>Available Quantity: </strong><label id = "appqty"></label><br>
  36. <strong>Date Posted: </strong><label id = "appposted"></label><br>
  37. <center><button class = "btn btn-primary" onclick = "hideDiv(2)">Edit Contents</button></center>
  38. </div>
  39.  
  40. <div id = "imagediv">
  41. XX
  42. </div>
  43.  
  44. #imagediv{
  45. height: 100px;
  46. width: 2000px;
  47. position: relative;
  48. bottom: -20%;
  49. background-color: #FFFFCC;
  50. overflow: scroll;
  51. }
  52.  
  53. #divforimg{
  54. float: left;
  55. }
  56.  
  57. .divforinfo {
  58. width: 200px;
  59. height: 200px;
  60. float: right;
  61. }
  62.  
  63. #imagediv{
  64. height: 100px;
  65. width: 100%;
  66. position: relative;
  67. bottom: 0px;
  68. background-color: #FFFFCC;
  69. overflow: scroll;
  70. }
  71.  
  72. #divforimg{
  73. float: left;
  74. }
  75.  
  76. .divforinfo {
  77. width: 200px;
  78. height: 200px;
  79. float: right;
  80. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement