微信小程序修改input中的placeholder字体颜色

 wxml

<input class="search-size" confirm-type="search" value="{{inputValue}}" type="text" bindinput="getInputValue" placeholder="搜索品牌或商品" placeholder-class="phcolor"></input>

wxss 

.phcolor {
  color: #D3D3D3;
}

最后来张效果图吧 

发布了151 篇原创文章 · 获赞 28 · 访问量 6万+

猜你喜欢

转载自blog.csdn.net/qq_42543264/article/details/105507206