css知识点

1.横向布局(float(子) + clearfix(父))
2.取色、量尺寸、预览字体(Word)
3.使用开发者工具查看样式、继承样式
4.四种引入 CSS 的方式:style 属性、style 标签、css link、css import
5.常见 CSS 属性:
i. ont-family font-size font-weight
ii. ul、body 的默认 margin 和 padding
iii. color、background-color、margin、padding
iv. line-height
四种加样式的方法
.内联style样式属性
.style标签
.外部文件 css link
.@import url(./b.css);

补充:
line-height 与 padding 、字体 同时使用时 字体高度=line-height+padding

你可能感兴趣的:(css知识点)