| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- .product-card{
- width: 234px;
- margin: 100px auto;
- /* 如果数值为0 那么单位可以省略 如果值是0.X 0也可以省略 0.5=.5 */
- box-shadow: 0 0 10px rgba(0,0,0,.5);
- padding: 10px;
- text-align: center;
- }
- .product-img img{
- width: 100%;
- }
- .product-title{
- /* 文字大小尽量不要小于12px */
- font-size: 14px;
- font-weight: 400;
- color: #333;
- }
- .product-info{
- font-size: 12px;
- color: #b0b0b0;
- text-wrap: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- margin-top: 10px;
- margin-bottom: 20px;
- }
- .product-price span{
- color: #ff6700;
- }
- .product-price del{
- color: #b0b0b0;
- }
- </style>
- </head>
- <body>
- <div class="product-card">
- <div class="product-img">
- <img src="./img/phone2.png" alt="img">
- </div>
- <div class="product-title">REDMI Turbo 5 MAX</div>
- <div class="product-info">天玑 9500s | 9000mAh 最大小米电池 | 1.5K 超级阳光屏</div>
- <div class="product-price">
- <span>2299元起</span>
- <del>2499元</del>
- </div>
- </div>
- </body>
- </html>
|