css – Firefox 30.0 – -moz-appearance:none无效

前端之家收集整理的这篇文章主要介绍了css – Firefox 30.0 – -moz-appearance:none无效前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用此代码隐藏下载箭头及其工作正常更新Firefox之前,但现在在Firefox 30.0它已破坏.
  1. select {
  2. -moz-appearance: none;
  3. text-indent: 0.01px;
  4. text-overflow: '';

}

解决方法

我找到了解决方
  1. select{
  2. height:20px; // height of the dropdown
  3. border:0 none;
  4. display: flex;
  5. background: url('image/sample.jpg');
  6. }

猜你在找的CSS相关文章