隐藏

ios input会显示有内阴影和边框【解决方法】

发布:2021/5/5 23:00:04作者:管理员 来源:本站 浏览次数:1082

今天爱分享给大家带来ios input会显示有内阴影和边框【解决方法】,希望能够帮助到大家。
input在ios上会显示有内阴影以及边框等东西
解决方法:

  1.  
  2. input[type=“text”], input[type=“button”], input[type=“submit”], input[type=“reset”], select, textarea,button {
  3. -webkit-appearance: none;
  4. }
  5. input:-webkit-autofill {
  6. -webkit-box-shadow: 0 0 0px 100px white inset;
  7. }
  8.  
  9.  

对于小程序、uniapp想要改变placeholder的样式
uniapp设置input textarea等的placeholder样式的时候失效 解决方案

  1.  
  2. placeholder-class="test"
  3. placeholder-style="color:red;"
  4.  
  5.  
  6.