1、处理input和textarea中占位符的排版
<input auto-focus bindinput="titleIntput" placeholder="为该段行程添加标题*"/>
<view class="line"></view>
<textarea style="width:100%;height:150rpx;" bindinput="introIntput" placeholder="为该段行程添加简介,100字以内" />
官方表示不可使用style
控制排版:
所以可以使用padding
来简单控制input
和textarea
的缩进。
.content input {
padding: 0 20rpx;
}
.content textarea {
padding: 0 20rpx;
}