Advertisement
Guest User

Untitled

a guest
Apr 25th, 2017
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.82 KB | None | 0 0
  1. <div class="photo">
  2.     <img ... />
  3. </div>
  4.  
  5. <div class="descripton">
  6.     <p class="title">Philips 3G^Ss21</p>
  7.     <div class="rating"> * * * * * </div>
  8.     <div class="summary">Small descr text</div>
  9.     <div class="personal_actions">
  10.         <button>Add to compare</button>
  11.         <button>Add to wishlist</button>
  12.     </div>
  13. </div>
  14.  
  15. <div class="add2cart">
  16.     <p class="price">100500</p>
  17.     <p class="oldprice">201000</p>
  18.     <p class="economy">18%</p>
  19.     <div class="rating"> * * * * * </div>
  20.     <p class="sku-code">Articul: 3127g369</p>
  21.     <div class="stocks">In stock</div>
  22.     <button type="submit">Add to cart</button>
  23. </div>
  24.  
  25. // inline CSS
  26. .descripton .rating { display:none; }
  27. .descripton .personal_actions { position:absolute;... }
  28.  
  29.  
  30. // plitka CSS
  31. .photo, .description, .add2cart { float:left;width:15/70/15%; }
  32. .add2cart .rating { display:none; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement