练习5_商品卡.html 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. .product-card{
  9. width: 234px;
  10. margin: 100px auto;
  11. /* 如果数值为0 那么单位可以省略 如果值是0.X 0也可以省略 0.5=.5 */
  12. box-shadow: 0 0 10px rgba(0,0,0,.5);
  13. padding: 10px;
  14. text-align: center;
  15. }
  16. .product-img img{
  17. width: 100%;
  18. }
  19. .product-title{
  20. /* 文字大小尽量不要小于12px */
  21. font-size: 14px;
  22. font-weight: 400;
  23. color: #333;
  24. }
  25. .product-info{
  26. font-size: 12px;
  27. color: #b0b0b0;
  28. text-wrap: nowrap;
  29. overflow: hidden;
  30. text-overflow: ellipsis;
  31. margin-top: 10px;
  32. margin-bottom: 20px;
  33. }
  34. .product-price span{
  35. color: #ff6700;
  36. }
  37. .product-price del{
  38. color: #b0b0b0;
  39. }
  40. </style>
  41. </head>
  42. <body>
  43. <div class="product-card">
  44. <div class="product-img">
  45. <img src="./img/phone2.png" alt="img">
  46. </div>
  47. <div class="product-title">REDMI Turbo 5 MAX</div>
  48. <div class="product-info">天玑 9500s | 9000mAh 最大小米电池 | 1.5K 超级阳光屏</div>
  49. <div class="product-price">
  50. <span>2299元起</span>
  51. <del>2499元</del>
  52. </div>
  53. </div>
  54. </body>
  55. </html>