练习4_商品卡.html 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. .goods-card{
  9. width: 234px;
  10. border:1px solid black;
  11. padding: 20px;
  12. margin:100px auto;
  13. text-align: center;
  14. }
  15. img{
  16. width: 234px;
  17. }
  18. .goods-title{
  19. margin:0;
  20. font-size: 14px;
  21. font-weight: 400;
  22. color: #333;
  23. }
  24. .goods-info{
  25. margin: 0;
  26. color: #b0b0b0;
  27. font-size: 12px;
  28. white-space: nowrap;
  29. overflow: hidden;
  30. text-overflow: ellipsis;
  31. }
  32. .goods-price{
  33. margin-top: 20px;
  34. }
  35. .new-price{
  36. color: #ff6700;
  37. }
  38. .old-price{
  39. color: #b0b0b0;
  40. }
  41. </style>
  42. </head>
  43. <body>
  44. <div class="goods-card">
  45. <img src="./img/phone.png" alt="手机图片">
  46. <h3 class="goods-title">Xiaomi 17 Pro Max</h3>
  47. <p class="goods-info">
  48. 徕卡光影大师 移动影像系统|徕卡 5X 超聚光潜望长焦
  49. </p>
  50. <div class="goods-price">
  51. <span class="new-price">5999元</span>
  52. <del class="old-price">6999元</del>
  53. </div>
  54. </div>
  55. </body>
  56. </html>