Guest User

Untitled

a guest
Dec 16th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. <html>
  2.  
  3. <head>
  4. </head>
  5.  
  6. <body>
  7.  
  8. <div id="Contenedor">
  9. <div id="Caja_Naranja"><img src="https://image.ibb.co/ddvh9m/600x400_Naranja.jpg" style="width: 100%"></div>
  10. <div id="Caja_Azul"><img src="https://image.ibb.co/gUoPN6/100x60_Azul.jpg"></div>
  11. </div>
  12.  
  13. </body>
  14.  
  15. <style>
  16.  
  17. * {
  18. margin: 0px;
  19. padding: 0px;
  20. box-sizing: border-box;
  21. }
  22.  
  23. #Contenedor {
  24. position: relative;
  25. width: 75%;
  26. margin: 0 auto;
  27. }
  28.  
  29. #Caja_Naranja {
  30. position: absolute;
  31. width:100%;
  32. }
  33.  
  34. #Caja_Azul {
  35. position: absolute;
  36. right: 10%;
  37. top: 10%;
  38. }
  39.  
  40. </style>
  41.  
  42. </html>
Add Comment
Please, Sign In to add comment