zoukankan      html  css  js  c++  java
  • 知识点

    1.  IE6下最小高度有限制(大概11PX),不能到1PX,解决方法:加个overflow:hidden;

    2. background的相关信息:

        background-color:是从元素边框的左上角到加框的右下角;

       background-image:是从元素边距的左上角到边框的右下角

    4.inline-block,block,inline

      inline 具有padding属性,不具有margin属性

      inline-block 会挤占别的元素的位置,inline不会

    5.在一个没有设置高度的元素中,高度是由line-height决定的,line-height是同linebox决定的,linebox是它下属的元素的最高的line-height决定的,但图片是由它自身带来的height决定的高度

       line-height不会触发haslayout   而height会触发haslayout

    <div><span style="line-height:20px">span<em style="line-height:40px">em</em></span></div>
    

      这个div的高度就是40px

  • 相关阅读:
    K近邻法
    决策树
    朴素贝叶斯
    Git学习笔记
    【原】maven web项目eclipse搭建
    三道面试题
    72-74 流的考点
    57-71 容器考点
    四 java web考点
    五 数据库考点
  • 原文地址:https://www.cnblogs.com/fsy0718/p/3048464.html
Copyright © 2011-2022 走看看