美文网首页
无标题文章

无标题文章

作者: wanpieces | 来源:发表于2017-02-17 15:02 被阅读0次

    (1) a span垂直居中:line-height; img:父元素行高=高;img{vertical-align:middle;}

    浏览器兼容性

    (1)兼容ie,firefox的line-height:hack

    #menu { line-height: 23px; }

    #menu { line-height: 26px\9; }

    #menu { *line-height: 23px; }ie7

    #menu { _line-height: 23px; }//ie6

    (2)input输入框的行高需要等于高,不然在ie7下会偏上;

    �(3)做绝对定位的时候必须写上left=0,不然ie下默认是以父元素relative的最右边定位的

    (4)在ie7下不设置overflow-x:hidden;就x轴方向不会隐藏

    (5)兼容ie和主流浏览器的冒泡事件:window.event?window.event.cancelBubble=true:event.stopPropagation();

    相关文章

      网友评论

          本文标题:无标题文章

          本文链接:https://www.haomeiwen.com/subject/qsqlwttx.html