Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. <div class = "nav">
  2. <div class = "container">
  3.  
  4. <div class = "image">
  5. <img src = "img1">
  6. </div>
  7. <div class = "title">
  8. <p> text1 </p>
  9. </div>
  10.  
  11. </div>
  12.  
  13. <div class = "container">
  14.  
  15. <div class = "image">
  16. <img src = "img2">
  17. </div>
  18. <div class = "title">
  19. <p> text2 </p>
  20. </div>
  21.  
  22. </div>
  23.  
  24. <div class = "container">
  25.  
  26. <div class = "image">
  27. <img src = "img3">
  28. </div>
  29. <div class = "title">
  30. <p> text3 </p>
  31. </div>
  32.  
  33. </div>
  34. </div>
  35.  
  36. .nav {
  37. display: inline;
  38. }
  39.  
  40. .container {
  41. position: relative;
  42. width: 100%;
  43. }
  44.  
  45. .image img {
  46. width: 30%;
  47. height: 4.5in;
  48. }
  49.  
  50. .title {
  51. width: 30%;
  52. position: absolute;
  53. bottom: 0; left: 0;
  54. }
  55.  
  56. .container {
  57. float:left;
  58. position: relative;
  59. width: 30%;
  60. }
  61.  
  62. .imgage{
  63. float:left;
  64. }
  65.  
  66. .image img {
  67. width: 100%;
  68. height: 4.5in;
  69. }
  70.  
  71. container { display: inline-block }
  72.  
  73. <div class = "title>
  74. <p> text3 </p>
  75. </div>
  76.  
  77. <h1 class="title">text3</h1>
  78.  
  79. .container h1 {
  80. width: 30%;
  81. position: absolute;
  82. bottom: 0; left: 0;
  83. }
  84.  
  85. <h1>text3</h1>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement