關于書城首頁的設計,css樣式的編寫至關重要。以下是書城首頁css代碼的一部分:
/* 設置標題字體大小 */ h1 { font-size: 36px; } /* 設置導航欄樣式 */ nav { background-color: #F9BA32; height: 60px; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; } nav a { color: white; font-size: 20px; text-decoration: none; margin-right: 30px; } /* 設置輪播圖樣式 */ .slider { height: 600px; position: relative; } .slider img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1s ease; } .slider img.active { opacity: 1; } /* 設置主體內容樣式 */ main { max-width: 1200px; margin: 0 auto; padding: 20px 40px; } main h2 { font-size: 24px; margin-bottom: 20px; } /* 設置書籍卡片樣式 */ .book-card { width: 200px; height: 300px; margin-right: 20px; margin-bottom: 20px; border: 1px solid #ccc; border-radius: 5px; overflow: hidden; } .book-card img { width: 100%; height: 200px; object-fit: cover; } .book-card h3 { font-size: 18px; margin: 10px 0; } .book-card p { font-size: 14px; color: #999; margin-bottom: 10px; }
這些是書城首頁的一些基本css代碼,可以根據實際需求進行修改和補充,以達到更好的用戶體驗。
上一篇主題換膚css