CSS是一種用于網(wǎng)頁設(shè)計的語言,它可以幫助我們控制網(wǎng)頁上所有的樣式和排版。在本文中,我們將使用CSS來編寫蘋果風格的網(wǎng)頁布局和樣式。
/*設(shè)置頁面背景*/ body { background-color: #f5f5f5; } /*設(shè)置頭部*/ nav { background-color: #333; color: white; height: 60px; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1); } /*設(shè)置標題*/ h1 { font-size: 28px; font-weight: bold; } /*設(shè)置導(dǎo)航欄*/ nav ul { display: flex; list-style: none; margin: 0; padding: 0; } nav ul li { margin-right: 20px; } nav ul li a { color: white; text-decoration: none; font-size: 18px; font-weight: bold; } /*設(shè)置主體內(nèi)容*/ main { margin: 20px; } h2 { font-size: 24px; font-weight: bold; margin-top: 30px; } p { font-size: 18px; line-height: 1.5; } /*設(shè)置按鈕*/ .button { background-color: #007aff; color: white; padding: 10px 20px; border-radius: 5px; text-decoration: none; font-weight: bold; transition: all 0.2s ease-in-out; } .button:hover { background-color: #0062cc; cursor: pointer; transform: scale(1.1); }
在這個代碼示例中,我們設(shè)置了網(wǎng)頁的背景顏色、頭部、標題、導(dǎo)航、主體內(nèi)容和按鈕的樣式。我們還使用了flexbox布局來使導(dǎo)航欄居中、對齊和排列。
在實際開發(fā)中,我們可以根據(jù)自己的需要自定義樣式。使用CSS可以讓我們很方便地控制網(wǎng)頁的外觀和布局,為用戶提供更好的用戶體驗。