css 学习大杂烩(持续更新)

css学习大杂烩

  1. 重置样式
@charset "utf-8"
/*Css Document*/
body,ul,ol,li,p,h1,h2,h3,h4,h5,h6,form,fieldset,table,td,img,div,dl,dt,dd,input{margin: 0;padding: 0;
}
body{font-size: 12px;}
img{border: none;}
li{list-style:none;}
input,select,textarea{outline: none;}
textarea{resize: none;}
a{text-decoration: none;}
  1. 清除浮动
.clearfix:after{content:" ";display: block;clear: both;}
.clearfix:{zoom:1;}
  1. css 哪些属性可以继承 CSS中可以和不可以继承的属性 - libaoqing - 博客园
  2. 行内框盒子模型
    • 内容区域(content area)
    • 内联盒子(inline boxes)其中光秃秃的文字属于匿名内联盒子
    • 行框盒子(line boxes)
    • 包含盒子(containing box)
      CSS3技术难点总结 - 滴.调
      css行高line-height的一些深入理解及应用 « 张鑫旭-鑫空间-鑫生活

你可能感兴趣的:(css 学习大杂烩(持续更新))