最近在學習CSS,嘗試對淘寶的產品頁面進行仿制。經過一番努力,終于完成了一個看起來還不錯的仿制頁面。
/* 以下是CSS樣式的代碼 */ /* 先設置整個頁面的背景色和字體 */ body { background-color: #f2f2f2; font-family: Arial, Helvetica, sans-serif; } /* 設定頭部的樣式 */ header { background-color: #fff; height: 70px; border-bottom: 1px solid #e6e6e6; padding: 10px 30px; display: flex; justify-content: space-between; } header .logo { margin-top: 15px; font-size: 30px; } header .search { display: flex; align-items: center; } header .search input { border: none; padding: 8px; width: 300px; } header .search button { background-color: #fe6e5d; color: #fff; border: none; padding: 8px 16px; margin-left: 10px; cursor: pointer; } /* 設定產品列表的樣式 */ .product-list { margin: 10px 30px; display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); grid-gap: 20px; } .product { background-color: #fff; border-radius: 5px; box-shadow: 0px 0px 5px #e6e6e6; padding: 10px; } .product img { width: 100%; } .product .name { font-size: 16px; margin: 10px 0; } .product .price { color: #fe6e5d; font-weight: bold; }
通過以上CSS樣式的設置,我成功地仿制了淘寶的產品列表頁面。我的CSS代碼包含了對整個頁面的背景、頭部、搜索欄和產品列表的樣式設置。在頭部的樣式設置中,我運用了flexbox布局,并使用了align-items和justify-content屬性來對搜索欄進行布局。在產品列表的樣式設置中,我使用了CSS Grid布局,并設置了每個產品的圖片、名稱和價格的樣式。總的來說,完成這樣的仿制頁面對于提高我的CSS編程技能是非常有幫助的。
上一篇vue添加div src
下一篇vue怎么調圖片