在網站設計中,如何讓商品顯示更加美觀與清晰是一個重要的問題。CSS的應用可以讓商品頁面更加吸引人。以下是一些商品顯示CSS樣式的建議:
/* 商品標題 */ .product-title { font-size: 24px; font-weight: bold; color: #333; margin-bottom: 10px; } /* 商品詳情 */ .product-details { font-size: 16px; color: #666; margin-bottom: 20px; } /* 商品價格 */ .product-price { font-size: 20px; font-weight: bold; color: #f00; } /* 商品圖片 */ .product-image { width: 200px; height: auto; border: 1px solid #ccc; } /* 商品按鈕 */ .product-button { font-size: 16px; font-weight: bold; color: #fff; background-color: #f00; padding: 10px 20px; border: none; border-radius: 5px; cursor: pointer; margin-top: 20px; } .product-button:hover { background-color: #d00; }
以上是一些常見的商品顯示CSS樣式,可以根據網站的整體設計和商品特性進行定制,讓商品更加吸引人。