Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. <div class="product">
  2. <img class="productImg" src="http://placehold.it/300x240">
  3. <div class="productTxt">
  4. <h1>Title</h1>
  5. <h3>Price</h3>
  6. <p>Short Description Short Description Short Description Short Description Short Description Short Description Short Description Short Description Short Description </p>
  7. </div>
  8. </div>
  9.  
  10. .product {
  11. box-sizing: border-box;
  12. margin: 0px;
  13. padding: 10px;
  14. width: 100%;
  15. height: 330px;
  16. border: 5px solid black;
  17. }
  18.  
  19. .productImg {
  20. width: 240px;
  21. height: 300px;
  22. display: inline-block;
  23. border: 3px solid red;
  24. }
  25.  
  26. .productTxt {
  27. border: 3px solid blue;
  28. display: inline-block;
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement