如图:
光标的位置直接在input下设置
input{
width: 100%;
height: 60rpx;
background-color: white;
font-size: 24rpx;
text-align: center;//光标居中
}
“搜索“两字的位置有两种方式:
-class
//wxml
<input type="text" name="search" value='' confirm-type="search" placeholder-class="center" placeholder="搜索"/>
//wxss
.center{
color: #aeaeae;
text-align: center;
}
或
-style
//wxml
<input type="text" name="search" value='' confirm-type="search" placeholder-style="text-align: center;color: #aeaeae;" placeholder="搜索"/>