現(xiàn)在越來越多的人通過渡一css學(xué)習(xí)前端開發(fā),這里為大家提供了一些淘寶資料,希望對大家有所幫助。
// 淘寶頁面布局 .taobao-container { width: 1200px; margin: 0 auto; } .taobao-header { height: 80px; line-height: 80px; border-bottom: 1px solid #ddd; text-align: center; } .taobao-nav { height: 40px; line-height: 40px; background-color: #f5f5f5; text-align: center; } .taobao-content { width: 100%; } .taobao-sidebar { width: 240px; float: left; padding: 20px; } .taobao-main { width: 720px; float: left; padding: 20px; } .taobao-footer { height: 50px; line-height: 50px; background-color: #f5f5f5; text-align: center; } // 淘寶搜索框 .taobao-search { position: relative; } .taobao-keywords { width: 500px; padding: 10px; border: 1px solid #ddd; border-right: none; font-size: 16px; } .taobao-search-btn { position: absolute; top: 0; right: 0; height: 36px; width: 120px; background-color: #ff5777; color: #fff; font-size: 16px; border: none; cursor: pointer; }
以上代碼可以幫助大家更好地理解淘寶頁面的布局和搜索框樣式的實(shí)現(xiàn)。