练习3_商品卡.html 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. box-shadow: 0 0 5px gray;
  11. margin: 100px auto;
  12. padding-bottom: 30px;
  13. }
  14. .goods-pic img{
  15. width: 234px;
  16. }
  17. .goods-title,.goods-info,.goods-price{
  18. padding:0 10px;
  19. }
  20. .goods-title{
  21. color: #333;
  22. font-size: 14px;
  23. font-weight: 400;
  24. text-align: center;
  25. margin-bottom: 2px;
  26. }
  27. .goods-info{
  28. font-size: 12px;
  29. color: #b0b0b0;
  30. overflow: hidden;
  31. text-overflow: ellipsis;
  32. text-wrap: nowrap;
  33. margin-bottom: 10px;
  34. }
  35. .goods-price{
  36. text-align: center;
  37. }
  38. .goods-price span{
  39. color: #ff6700;
  40. font-size: 14px;
  41. font-weight: 400;
  42. }
  43. .goods-price del{
  44. color: #b0b0b0;
  45. font-size: 14px;
  46. font-weight: 400;
  47. }
  48. </style>
  49. </head>
  50. <body>
  51. <div class="goods-card">
  52. <div class="goods-pic">
  53. <img src="./image/phone.png" alt="phone">
  54. </div>
  55. <div class="goods-title">
  56. <span>REDMI K80</span>
  57. </div>
  58. <div class="goods-info">
  59. 第三代骁龙8|2K新国屏|6550mAh 超长续航
  60. </div>
  61. <div class="goods-price">
  62. <span>2299元起</span>
  63. <del>2499元</del>
  64. </div>
  65. </div>
  66. </body>
  67. </html>