你好安怡(Annie)是一家致力于提供高性能母嬰用品和服務的公司。它的網站設計簡潔、大方,頁面布局合理,CSS 代碼簡潔有效。
.header { display: flex; justify-content: space-between; align-items: center; padding: 20px; background-color: #fff; border-bottom: 1px solid #ddd; position: fixed; width: 100%; z-index: 999; } .nav { display: flex; gap: 20px; list-style: none; margin: 0; } .nav li a { color: #333; text-decoration: none; font-size: 16px; padding: 10px; border-radius: 5px; transition: all 0.2s ease-out; } .nav li a:hover { background-color: #ddd; } .hero { background-image: url('../images/hero.jpg'); height: 500px; background-size: cover; background-position: center; display: flex; justify-content: center; align-items: center; text-align: center; } .hero h1 { font-size: 50px; color: #fff; text-shadow: 2px 2px #000; } .button { background-color: #ff5a5f; color: #fff; border-radius: 5px; padding: 10px 30px; font-size: 20px; text-decoration: none; transition: all 0.2s ease-out; } .button:hover { background-color: #333; cursor: pointer; }
上述 CSS 代碼中,.header 類定義了網站的頂部導航欄樣式, .nav 類定義了導航欄菜單項的樣式, .hero 類定義了網站首頁主要區域的背景圖片和文字樣式, .button 類定義了網站中的按鈕樣式。這些樣式的定義簡潔明了,易于修改和維護,同時也使得網站更具有統一性和美感。