给textarea设置了去除ios默认的内边距后,在iphoneXR下是不起作用的,在其他苹果设备上面是可以的,例如:8p,X上面都是可以的,用的是Taro写的
{ !showCustmor && !showPermissionToast && <View className='textarea-wrap'>
<Textarea name='textarea' disableDefaultPadding placeholderClass='thcolor' className='editor-textarea' maxlength='1000' placeholder='有什么好的消息分享给大家...' value={txtContent} onInput={(e) => {this.onTextAreaValue(e)}} onLinechange={(e) => {this.textAreaLineChange.bind(this, e)}}></Textarea>
{ focusFlag && <CoverView className='cover-textarea'></CoverView>}
</View>
}
如上所示。。。不知道什么原因。系统版本是12.1.2,目的很简单就是想让 标题和内容框对齐,外层的padding值都是相等的
css样式 padding 0好用吗
cover-view 这个组件有这么一句描述,不知道对textarea有没有影响,
只支持基本的定位、布局、文本样式。不支持设置
单边的border
、background-image
、shadow
、overflow: visible
等。https://developers.weixin.qq.com/miniprogram/dev/component/cover-view.html