小程序搜索佈局

這裏寫圖片描述

wxml

<view class='searchBox'>
    <view class='search'>
        <icon size='15' type='search' class='searchIcon'></icon>
        <input class='searchInput' type='text' placeholder='請輸入關鍵字'></input>
    </view>
</view>

wxss

.searchBox{
    height: 100rpx;
    width: 100%;
    position: relative;
    padding: 20rpx 0;
    box-sizing: border-box;
}
.search{
    display: flex;
    width: 75%;
    margin: 0 auto;
    height: 60rpx;
    line-height: 60rpx;
    border: 1px solid #ddd;
    border-radius: 30rpx;
    background: #fff;
}
.searchIcon{
    padding: 15rpx 30rpx 0 15rpx;
    box-sizing: border-box;
}
.searchInput{
    width: 80%;
    height: 100%;
    padding: 5rpx;
    box-sizing: border-box;
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章