欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

input属性placeholder在iOS中显示不完整的解决方法

程序员文章站 2022-05-26 09:28:25
...

在这里一定要先设置input,再设置placeholder,不然会被覆盖

注意注意:input样式一定要写在前面

input{
    width: 8.5rem;
    height: 1.25rem;
    font-size: .6rem;
}
::-webkit-input-placeholder{
     font-size: .5rem;
     line-height: 1.2rem;
     text-align: center;
 }