Advertisement
Guest User

Untitled

a guest
Oct 24th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. #container {
  2. position: relative;
  3.  
  4. }
  5. #image {
  6. height: 22%;
  7. position: relative;
  8. display: inline-block;
  9. margin-top:3px;
  10. vertical-align: bottom;
  11.  
  12.  
  13. }
  14. #text {
  15. z-index: 100;
  16. position: absolute;
  17. color: white;
  18. font-size: 80px;
  19. font-weight: bold;
  20. font-family:nexa;
  21. left: 150px;
  22. top: -50px;
  23. }
  24. #textdx {
  25. position: absolute;
  26. color: #787d83;
  27. font-size: 80px;
  28. font-weight: bold;
  29. font-family:nexa;
  30. float:right;
  31. width:50%;
  32. right: 150px;
  33. top: -50px;
  34. }
  35.  
  36. <div id='container'>
  37. <img id='image' src='imgA.png'></img>
  38. <p id='text'>5</p>
  39. <p id='textdx'>5</p>
  40. </div>
  41.  
  42. <div id='container'>
  43. <img id='image' src='imgB.png'></img>
  44. <p id='text'>6</p>
  45. <p id='textdx'>6</p>
  46. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement