天貓搜索框是一個非常重要的組件,它幫助用戶快速地找到自己想要購買的商品。這篇文章將介紹天貓搜索框的CSS樣式。
/*搜索框樣式*/ .search-form { width: 520px; /*搜索框?qū)挾?/ height: 45px; /*搜索框高度*/ border: none; /*邊框*/ outline: none; /*不顯示外邊框*/ padding: 0px 10px; /*內(nèi)邊距*/ background-color: #f2f2f2; /*背景色*/ font-size: 16px; /*字體大小*/ color: #666666; /*字體顏色*/ box-sizing: border-box; /*盒子模型*/ } /*搜索按鈕樣式*/ .search-btn { width: 80px; /*按鈕寬度*/ height: 45px; /*按鈕高度*/ border: none; /*邊框*/ outline: none; /*不顯示外邊框*/ background-color: #ff6d00; /*背景色*/ font-size: 16px; /*字體大小*/ color: #ffffff; /*字體顏色*/ cursor: pointer; /*鼠標(biāo)樣式*/ box-sizing: border-box; /*盒子模型*/ } /*搜索框和按鈕容器樣式*/ .search-container { display: flex; /*彈性盒子布局*/ align-items: center; /*垂直居中對齊*/ }
以上是天貓搜索框的CSS樣式,其中包括搜索框樣式、搜索按鈕樣式和搜索框和按鈕容器樣式。需要注意的是,搜索框和按鈕容器使用了彈性盒子布局,可以讓它們在不同的屏幕大小下自適應(yīng)排列,提高用戶體驗(yàn)。
上一篇天貓店鋪頁面css js
下一篇css邊距100px