在uniapp中修改input组件的placeholder样式,可以通过以下几种方式实现: 1. 使用placeholder-class属性 这是uniapp官方推荐的方式,也是经过测试验证能够生效的方法。你可以在input标签中使用placeholder-class属性,并为其指定一个CSS类名,然后在样式文件中定义这个类的样式规则。 示例代码: html <template> <...
<uni-easyinput v-model="inputV" placeholder="请输入条形码" class="is2" /> <style lang="scss" scoped> .is2 { & :nth-child(1) { font-size: 20px; } & :nth-child(2) { font-size: 20px; } } </style> 可以使用css3的子类选择器控制他们的样式 最后一次编辑于 05-11 点赞1 收藏 ...