Advertisement
Guest User

Untitled

a guest
Jul 3rd, 2015
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>Pizzaria</title>
  6. <style>
  7. *{
  8. margin:0 auto;
  9. padding:0 auto;
  10. margin-top:50px;
  11. }
  12.  
  13. #conteudo{
  14. width:90%;
  15. height:auto;
  16. padding:10px;
  17. position:relative;
  18. }
  19.  
  20. #imagem_produto{
  21. width:260px;
  22. height:180px;
  23. border:solid 5px #333;
  24. position: relative;
  25. }
  26.  
  27. #descricao_produto{
  28. width:260px;
  29. height:180px;
  30. position:relative;
  31. top:-50px;
  32. padding:1px;
  33. background-color:rgba(1,0,0,.60);
  34. color:#fff;
  35. display: block;
  36. opacity: 0;
  37. transition:0.1s;
  38. }
  39.  
  40. #imagem_produto:hover #descricao_produto{
  41. opacity:1;
  42. transition:0.1s;
  43. }
  44.  
  45. </style>
  46. </head>
  47.  
  48. <body>
  49. <div id="conteudo">
  50. <div style="width:270px; margin-bottom:-50px; height:20px;">
  51. <div style="">NOME DO PRODUTO</div></div>
  52. <div id="imagem_produto" style="background:url(imagem.jpg); background-position:35%;">
  53.  
  54. <div id="descricao_produto">
  55. DESCRIÇÃO DO PRODUTO
  56.  
  57. </div>
  58.  
  59. </div>
  60. </div>
  61. </body>
  62. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement