Advertisement
Guest User

bottle etiquette

a guest
Oct 23rd, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <div class="bottle">
  2. <div class="illu"></div>
  3. <div class="etiquette">
  4. <img src="https://via.placeholder.com/600x100" />
  5. </div>
  6. </div>
  7.  
  8.  
  9. .bottle {
  10. position: relative;
  11. background-color: pink;
  12. width: 40vw;
  13. height: 90vh;
  14. margin: auto;
  15. }
  16.  
  17. .bottle .illu {
  18. background-color: blue;
  19. width: 50%;
  20. height: 90%;
  21. margin: auto;
  22. }
  23.  
  24. .etiquette {
  25. position: absolute;
  26. border: 1px solid black;
  27. overflow: hidden;
  28. height: 100px;
  29. width: 600px;
  30. top: 130px;
  31. left: 140px;
  32. }
  33.  
  34. .etiquette img {
  35. position: absolute;
  36. left: 00px
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement