作為Web前端工程師,掌握CSS樣式設(shè)計(jì)是非常重要的一項(xiàng)技能。在本文中,我們將會(huì)學(xué)習(xí)如何使用CSS來實(shí)現(xiàn)百度網(wǎng)頁版的界面。
/* 全局樣式 */ body { font-family: Arial, sans-serif; font-size: 14px; color: #333; } /* 頭部樣式 */ #header { height: 60px; background-color: #fff; border-bottom: 1px solid #ebebeb; } #header .logo { float: left; margin: 20px 30px 0 0; } #header .search-bar { float: left; margin-top: 20px; } #header .search-bar input[type="text"] { width: 360px; height: 30px; padding: 5px 10px; border: 1px solid #ddd; border-radius: 3px; } #header .search-bar button { height: 30px; background-color: #38f; border: 1px solid #38f; border-radius: 3px; color: #fff; margin-left: -1px; cursor: pointer; } /* 主體樣式 */ #container { margin: 20px auto; width: 1000px; background-color: #fff; border: 1px solid #ebebeb; border-radius: 3px; box-shadow: 3px 3px 3px #ccc; } /* 搜索結(jié)果樣式 */ .search-result { margin: 10px; } .search-result .result-item { margin-bottom: 10px; border-bottom: 1px dashed #ccc; padding-bottom: 10px; } .search-result .result-item h3 { font-size: 18px; font-weight: normal; margin-bottom: 5px; } .search-result .result-item p { margin-top: 5px; color: #666; } .search-result .result-item a { color: #38f; text-decoration: none; } /* 頁腳樣式 */ #footer { height: 50px; text-align: center; background-color: #f5f5f5; border-top: 1px solid #ebebeb; margin-top: 20px; padding-top: 10px; }
通過上述CSS樣式代碼,我們實(shí)現(xiàn)了百度網(wǎng)頁版的基礎(chǔ)樣式。如需進(jìn)一步優(yōu)化頁面,可以參考百度首頁的具體實(shí)現(xiàn)結(jié)合自己的實(shí)際需求進(jìn)行調(diào)整。