uniapp input 解决 placeholder 垂直不居中,偏上的问题

前言:
uniapp ios 版本 ios 低版本中会出现 placeholder 不居中 偏上问题的发生。

解决:

1.假设 input 的高度为 70rpx;
2.设置 input line-height: 70rpx;

	.end-input {
		display: flex;
		justify-content: center;
		align-items: center;
		background: #F4F4F4;
		border-radius: 4upx;
		height: 70upx;
		font-size: 28upx;
		line-height: 70upx;
		font-family: PingFang SC;
		font-weight: 500;
		color: #848484;
	}

这样能保证会在居中,并且适配app h5 小程序。

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐