Skip to content

Latest commit

 

History

History
56 lines (36 loc) · 1.41 KB

issues.md

File metadata and controls

56 lines (36 loc) · 1.41 KB

CSS 老中医,专治各种疑难杂症

静静地看我吹牛逼....

移除 texteare 下多余的padding

  • 诊断:项目中发现 textarea 底部总会都 5px 左右的padding

  • 配方:

    textarea {
        vertical-align: bottom;
    }

    使用 display: block; 也行。。。 研究下

移除 IE 10 及以上 input 自带的 clear button 以及 type="password" 带有的 icon

display: inline-block 元素之间的间距移除

see solution at:

IE8 实现兼容 rgba

  • 解决方案:
  1. http://www.liuhaihua.cn/archives/9256.html DXImageTransform.Microsoft.gradient

  2. less 解决 http://www.lesscss.net/functions/#color-definition-argb-color-

safari 下 transition 引起的闪烁问题

  • 加个 transform: translate3d(0, 0, 0);